Configure dependabot to ignore ruff updates#6185
Conversation
WalkthroughAdded a Dependabot ignore rule for Cargo deps matching Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant Caller as parse_inner caller
participant Builder as NumberFormatBuilder
participant Parser as lexical parse routine
Note over Caller,Builder: Before
Caller->>Builder: build() (validates)
Builder-->>Caller: Result<Format, Error> (may Err)
alt valid
Caller->>Parser: parse_with_format(format)
Parser-->>Caller: Result<f64, ParseError>
else invalid
Builder-->>Caller: Error
end
Note over Caller,Builder: After (changed)
Caller->>Builder: build_unchecked() (no validation)
Builder-->>Caller: Format (assumed valid)
Caller->>Parser: parse_with_format(format)
Parser-->>Caller: Result<f64, ParseError or UB-like behavior if format invalid)
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Poem
Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
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 |
Sorry, something went wrong.
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
.github/dependabot.yml (1)
9-10: Fix typo in comment.Please correct “dealling” → “dealing” to keep the comment polished.
📜 Review details
Configuration used: Path: .coderabbit.yml
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
Cargo.lockis excluded by!**/*.lock
📒 Files selected for processing (1)
.github/dependabot.yml(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (8)
- GitHub Check: Run snippets and cpython tests on wasm-wasi
- GitHub Check: Run rust tests (windows-2025)
- GitHub Check: Run snippets and cpython tests (ubuntu-latest)
- GitHub Check: Check the WASM package and demo
- GitHub Check: Run snippets and cpython tests (macos-latest)
- GitHub Check: Ensure compilation on various targets
- GitHub Check: Run tests under miri
- GitHub Check: Run snippets and cpython tests (windows-2025)
Sorry, something went wrong.
There was a problem hiding this comment.
Actionable comments posted: 2
📜 Review details
Configuration used: Path: .coderabbit.yml
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (3)
.github/dependabot.yml(1 hunks)compiler/literal/Cargo.toml(1 hunks)compiler/literal/src/float.rs(1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
- .github/dependabot.yml
🧰 Additional context used
📓 Path-based instructions (1)
**/*.rs
📄 CodeRabbit inference engine (.github/copilot-instructions.md)
**/*.rs: Format Rust code with the default rustfmt style (runcargo fmt)
Run clippy and fix any warnings or lints introduced by your changes
Follow Rust best practices for error handling and memory management
Files:
compiler/literal/src/float.rs
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (10)
- GitHub Check: Run snippets and cpython tests on wasm-wasi
- GitHub Check: Check the WASM package and demo
- GitHub Check: Run snippets and cpython tests (ubuntu-latest)
- GitHub Check: Run snippets and cpython tests (macos-latest)
- GitHub Check: Run snippets and cpython tests (windows-2025)
- GitHub Check: Run rust tests (ubuntu-latest)
- GitHub Check: Run rust tests (windows-2025)
- GitHub Check: Run rust tests (macos-latest)
- GitHub Check: Check Rust code with rustfmt and clippy
- GitHub Check: Ensure compilation on various targets
Sorry, something went wrong.
c979059
into
RustPython:main
Oct 12, 2025
Explained in
.github/dependabot.ymlthe motivation for this.Closes #6183
Closes #6184
Summary by CodeRabbit