fix(rs-scripts): remove redundant wildcard pattern blocking CI#3430
Conversation
Clippy rejects `"auto" | _` since `_` already covers all patterns. This was blocking CI on all PRs that include the rs-scripts workspace. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
✨ Finishing Touches📝 Generate docstrings
🧪 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 |
Review GateCommit:
|
Issue being fixed or feature implemented
Clippy rejects
"auto" | _in the decode-document match arm (wildcard_in_or_patterns), causing CI failure on every PR that includes the rs-scripts workspace (#3428, #3429, etc.).What was done?
One-line fix:
"auto" | _→_. The_wildcard already covers"auto"and everything else.How Has This Been Tested?
cargo clippy -p rs-scripts -- -D warningspasses.Breaking Changes
None.
Checklist:
Summary by CodeRabbit