-
Notifications
You must be signed in to change notification settings - Fork 0
Detector: Rust Clippy
Jacob Centner edited this page Apr 10, 2026
·
1 revision
Wraps cargo clippy for Rust code quality checks.
| Property | Value |
|---|---|
| Name | rust-clippy |
| Tier | DETERMINISTIC |
| Languages | Rust |
| External tool | cargo clippy (Rust toolchain) |
| LLM required | No |
| Confidence | 1.00 |
Rust lint issues from Clippy — correctness, suspicious patterns, security concerns, style, and performance.
- Checks for Rust project markers (
Cargo.tomlor.rsfiles) - Runs
cargo clippy --message-format=json --quiet - Parses JSON Lines output, filtering for
reason="compiler-message"entries - Deduplicates by file + line + message
- Maps Clippy lint categories to Sentinel severity levels
| Clippy category | Description |
|---|---|
clippy::correctness |
Definite bugs |
clippy::suspicious |
Likely bugs |
clippy::security |
Security issues |
[RUST-CLIPPY] src/parser.rs:87 — clippy::correctness::infinite_loop
This loop never terminates
Severity: HIGH, Confidence: 1.00
Clippy is included with the Rust toolchain:
rustup component add clippy- Requires Rust toolchain installed
- 300-second timeout (Rust compilation can be slow)
- Skips
target/directory
Local Repo Sentinel · MIT License
Getting Started
Reference
Detectors
- Detector: Todo Scanner
- Detector: Complexity
- Detector: Dead Code
- Detector: Dep Audit
- Detector: Docs Drift
- Detector: Unused Deps
- Detector: Lint Runner
- Detector: ESLint Runner
- Detector: Go Linter
- Detector: Rust Clippy
- Detector: Git Hotspots
- Detector: Stale Env
- Detector: Semantic Drift
- Detector: Test Coherence
- Detector: CI/CD Drift
- Detector: Architecture Drift
- Detector: Inline Comment Drift
- Detector: Intent Comparison
Advanced
Workflow