System Grab Bag

View all TLDR pages from common (or from all pages)

cargo clippy

A collection of lints to catch common mistakes and improve your Rust code. More information: https://github.com/rust-lang/rust-clippy.
  • Run checks over the code in the current directory:
    cargo clippy
  • Require that Cargo.lock is up to date:
    cargo clippy --locked
  • Run checks on all packages in the workspace:
    cargo clippy --workspace
  • Run checks for a package:
    cargo clippy --package {{package}}
  • Treat warnings as errors:
    cargo clippy -- --deny warnings
  • Run checks and ignore warnings:
    cargo clippy -- --allow warnings
  • Apply Clippy suggestions automatically:
    cargo clippy --fix

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.