Rust's Cargo Clippy is a tool for linting Rust code. It provides additional checks beyond those provided by the Rust compiler, which can help improve the quality of Rust code. Clippy is integrated into the Cargo build system, making it easy to run and incorporate into a Rust project's development process.
cargo clippy -- \
-W clippy::pedantic \
-W clippy:nursery \
-W clippy:unwrap_used \