A bunch of lints to catch common mistakes and improve your Rust code
Clone or download
bors Auto merge of #3737 - phansch:2018, r=phansch
Transition leftover test libs to Rust 2018

To tick off some checkboxes in rust-lang/rust#58099 =)
Latest commit 69a7f03 Feb 3, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Remove all copyright license headers Jan 8, 2019
ci Remove all copyright license headers Jan 8, 2019
clippy_dev dependencies: update itertools from 0.7 to 0.8 Jan 25, 2019
clippy_dummy Remove all copyright license headers Jan 8, 2019
clippy_lints run `util/dev update_lints` and `cargo fmt --all` Feb 3, 2019
clippy_workspace_tests Transition leftover test libs to Rust 2018 Feb 3, 2019
etc/relicense Fix some nursery links Dec 2, 2018
mini-macro Transition leftover test libs to Rust 2018 Feb 3, 2019
rustc_tools_util Remove all copyright license headers Jan 8, 2019
src Adding lint for too many lines. Feb 1, 2019
tests Merge branch 'master' into issue3721 Feb 3, 2019
util fetch_prs_between: add .sh file ending Jan 29, 2019
.editorconfig Add EditorConfig Jul 15, 2016
.gitattributes gitattributes: Treat .fixed files as rust files Jan 25, 2019
.gitignore consistently gitignore all Cargo.lock files Sep 27, 2018
.remarkrc.json use .remarkrc.json for travis May 6, 2016
.travis.yml Remove conditionals from base builds Feb 1, 2019
CHANGELOG.md Merge branch 'master' into issue3721 Feb 3, 2019
CODE_OF_CONDUCT.md Add missing code of conduct file Nov 1, 2018
CONTRIBUTING.md Fixing typo in CONTRIBUTING.md Jan 20, 2019
COPYRIGHT Remove all copyright license headers Jan 8, 2019
Cargo.toml chore(cargo/dependencies/cargo-metadata): Upgrade to 0.7.1 Jan 25, 2019
LICENSE-APACHE Relicense clippy Oct 6, 2018
LICENSE-MIT Relicense clippy Oct 6, 2018
PUBLISH.md Cleanup old min_version stuff Sep 3, 2018
README.md run `util/dev update_lints` and `cargo fmt --all` Feb 3, 2019
appveyor.yml ci: when installing rust-toolchain-installer-master, install it in de… Oct 31, 2018
build.rs Remove all copyright license headers Jan 8, 2019
pre_publish.sh Remove all copyright license headers Jan 8, 2019
publish.files CHANGELOG is ordered after Cargo Jun 16, 2017
rust-toolchain Add rust-toolchain file Jul 11, 2018
rustfmt.toml Error on line overflow Nov 27, 2018

README.md

Clippy

Build Status Windows Build status Current Version License: MIT/Apache-2.0

A collection of lints to catch common mistakes and improve your Rust code.

There are 296 lints included in this crate!

We have a bunch of lint categories to allow you to choose how much Clippy is supposed to annoy help you:

  • clippy::all (everything that has no false positives)
  • clippy::pedantic (everything)
  • clippy::nursery (new lints that aren't quite ready yet)
  • clippy::style (code that should be written in a more idiomatic way)
  • clippy::complexity (code that does something simple but in a complex way)
  • clippy::perf (code that can be written in a faster way)
  • clippy::cargo (checks against the cargo manifest)
  • clippy::correctness (code that is just outright wrong or very very useless)

More to come, please file an issue if you have ideas!

Only the following of those categories are enabled by default:

  • clippy::style
  • clippy::correctness
  • clippy::complexity
  • clippy::perf

Other categories need to be enabled in order for their lints to be executed.

Table of contents:

Usage

Since this is a tool for helping the developer of a library or application write better code, it is recommended not to include Clippy as a hard dependency. Options include using it as an optional dependency, as a cargo subcommand, or as an included feature during build. These options are detailed below.

As a cargo subcommand (cargo clippy)

One way to use Clippy is by installing Clippy through rustup as a cargo subcommand.

Step 1: Install rustup

You can install rustup on supported platforms. This will help us install Clippy and its dependencies.

If you already have rustup installed, update to ensure you have the latest rustup and compiler:

rustup update

Step 2: Install Clippy

Once you have rustup and the latest stable release (at least Rust 1.29) installed, run the following command:

rustup component add clippy

If it says that it can't find the clippy component, please run rustup self update.

Step 3: Run Clippy

Now you can run Clippy by invoking the following command:

cargo clippy

Running Clippy from the command line without installing it

To have cargo compile your crate with Clippy without Clippy installation in your code, you can use:

cargo run --bin cargo-clippy --manifest-path=path_to_clippys_Cargo.toml

Note: Be sure that Clippy was compiled with the same version of rustc that cargo invokes here!

Travis CI

You can add Clippy to Travis CI in the same way you use it locally:

language: rust
rust:
  - stable
  - beta
before_script:
  - rustup component add clippy
script:
  - cargo clippy
  # if you want the build job to fail when encountering warnings, use
  - cargo clippy -- -D warnings
  # in order to also check tests and none-default crate features, use
  - cargo clippy --all-targets --all-features -- -D warnings
  - cargo test
  # etc.

It might happen that Clippy is not available for a certain nightly release. In this case you can try to conditionally install Clippy from the git repo.

language: rust
rust:
  - nightly
before_script:
   - rustup component add clippy --toolchain=nightly || cargo install --git https://github.com/rust-lang/rust-clippy/ --force clippy
   # etc

Configuration

Some lints can be configured in a TOML file named clippy.toml or .clippy.toml. It contains a basic variable = value mapping eg.

blacklisted-names = ["toto", "tata", "titi"]
cyclomatic-complexity-threshold = 30

See the list of lints for more information about which lints can be configured and the meaning of the variables.

To deactivate the “for further information visit lint-link” message you can define the CLIPPY_DISABLE_DOCS_LINKS environment variable.

Allowing/denying lints

You can add options to your code to allow/warn/deny Clippy lints:

  • the whole set of Warn lints using the clippy lint group (#![deny(clippy::all)])

  • all lints using both the clippy and clippy::pedantic lint groups (#![deny(clippy::all)], #![deny(clippy::pedantic)]). Note that clippy::pedantic contains some very aggressive lints prone to false positives.

  • only some lints (#![deny(clippy::single_match, clippy::box_vec)], etc)

  • allow/warn/deny can be limited to a single function or module using #[allow(...)], etc

Note: deny produces errors instead of warnings.

If you do not want to include your lint levels in your code, you can globally enable/disable lints by passing extra flags to Clippy during the run: cargo clippy -- -A clippy::lint_name will run Clippy with lint_name disabled and cargo clippy -- -W clippy::lint_name will run it with that enabled. This also works with lint groups. For example you can run Clippy with warnings for all lints enabled: cargo clippy -- -W clippy::pedantic

Contributing

If you want to contribute to Clippy, you can find more information in CONTRIBUTING.md.

License

Copyright 2014-2019 The Rust Project Developers

Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option. All files in the project carrying such notice may not be copied, modified, or distributed except according to those terms.