chore: add DeepSource configuration#7
Conversation
|
Warning Review limit reached
More reviews will be available in 43 minutes and 19 seconds. Learn how PR review limits work. Your organization has run out of usage credits. Purchase more credits in the billing tab to continue. ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits. 🚦 How do rate limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate. For paid Pro and Pro+ PR reviews, CodeRabbit uses rolling per-developer review limits. Reviews become available again as older review attempts age out of the rolling limit window. Please see our Fair Usage Limits Policy for further information. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Code Review
This pull request introduces a .deepsource.toml configuration file to enable DeepSource analysis for Python and JavaScript. The review feedback suggests correcting the Python runtime_version to a supported specific version format, expanding the exclude_patterns to align with existing Ruff exclusions, and removing the redundant and incorrect dependency_file_paths directory path from the JavaScript analyzer configuration.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| enabled = true | ||
|
|
||
| [analyzers.meta] | ||
| runtime_version = "3.x.x" |
There was a problem hiding this comment.
DeepSource's Python analyzer does not support wildcard/semver patterns like "3.x.x" for runtime_version. It expects a specific major.minor version string (e.g., "3.10", "3.11", "3.12"). Since the project's pyproject.toml specifies requires-python = ">=3.10" and mypy is configured for "3.10", setting this to "3.10" prevents configuration parsing and analysis errors.
| runtime_version = "3.x.x" | |
| runtime_version = "3.10" |
| exclude_patterns = [ | ||
| "node_modules/**", | ||
| "dist/**", | ||
| "target/**", | ||
| "vendor/**", | ||
| "build/**", | ||
| "coverage/**", | ||
| "bundle.js", | ||
| "**/bundle.js", | ||
| "**/generated/**", | ||
| ] |
There was a problem hiding this comment.
To keep DeepSource findings actionable and consistent with the existing Ruff configuration (tool.ruff.extend-exclude in pyproject.toml), consider excluding temporary test directories, demos, and scratch paths.
| exclude_patterns = [ | |
| "node_modules/**", | |
| "dist/**", | |
| "target/**", | |
| "vendor/**", | |
| "build/**", | |
| "coverage/**", | |
| "bundle.js", | |
| "**/bundle.js", | |
| "**/generated/**", | |
| ] | |
| exclude_patterns = [ | |
| "node_modules/**", | |
| "dist/**", | |
| "target/**", | |
| "vendor/**", | |
| "build/**", | |
| "coverage/**", | |
| "bundle.js", | |
| "**/bundle.js", | |
| "**/generated/**", | |
| "demo/**", | |
| "scripts/**", | |
| "**/*_tmp/**", | |
| "**/_temp/**", | |
| "**/export_test_outputs/**", | |
| "**/.tmp/**", | |
| ] |
| [[analyzers]] | ||
| name = "javascript" | ||
| enabled = true | ||
| dependency_file_paths = ["."] |
There was a problem hiding this comment.
The dependency_file_paths property expects paths to actual dependency files (e.g., ["package.json"]), not directories like ["."]. Since package.json is located in the root of the repository, DeepSource's JavaScript analyzer automatically detects and parses it, making this property redundant.
| [[analyzers]] | |
| name = "javascript" | |
| enabled = true | |
| dependency_file_paths = ["."] | |
| [[analyzers]] | |
| name = "javascript" | |
| enabled = true |
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Summary
Validation
.deepsource.tomlwith Pythontomllib.Follow-up
2233admin/glyph-artsin the DeepSource Dashboard after this PR merges.exclude_patternsif generated files dominate findings.