chore: add DeepSource config scoped to hand-written code - #96
Open
abhishekmishragithub wants to merge 1 commit into
Open
chore: add DeepSource config scoped to hand-written code#96abhishekmishragithub wants to merge 1 commit into
abhishekmishragithub wants to merge 1 commit into
Conversation
abhishekmishragithub
added a commit
that referenced
this pull request
Aug 8, 2026
The .deepsource.toml is added directly to main in #96 so analysis activates without waiting for this release. Removed here to avoid a duplicate add.
Enables DeepSource analysis on the repo. The SDK is mostly Fern-generated, so generated surfaces (raw_client, client, socket_client, types, errors, core, environment, package __init__) are excluded so findings focus on hand-written code: crew, cli, helpers, tools, telemetry. Python analyzer with mypy type checking (line length 120 to match ruff), plus the secrets and test-coverage analyzers.
abhishekmishragithub
force-pushed
the
chore/deepsource-config
branch
from
August 8, 2026 03:41
38b3827 to
e38a13d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
.deepsource.tomlso DeepSource analysis activates on the repo (the GitHub app is already configured).The SDK is mostly Fern-generated, so generated surfaces are excluded to keep findings on hand-written code (
crew,cli,helpers,tools,telemetry):raw_client.py,client.py,socket_client.py,types/**,errors/**,core/**,environment.py, package__init__.pyAnalyzers (reference):
type_checker = mypy,max_line_length = 120(matches ruff)Standalone so DeepSource starts reading
mainimmediately, rather than waiting for the 5.10 release. Will be removed from the 5.10 release branch to avoid a duplicate add.