]> git.lizzy.rs Git - rust.git/blob - README.md
Merge pull request #2921 from yaahallo/master
[rust.git] / README.md
1 We are currently in the process of discussing Clippy 1.0 via the RFC process in https://github.com/rust-lang/rfcs/pull/2476 . The RFC's goal is to clarify policies around lint categorizations and the policy around which lints should be in the compiler and which lints should be in Clippy. Please leave your thoughts on the RFC PR.
2
3 # Clippy
4
5 [![Build Status](https://travis-ci.org/rust-lang-nursery/rust-clippy.svg?branch=master)](https://travis-ci.org/rust-lang-nursery/rust-clippy)
6 [![Windows Build status](https://ci.appveyor.com/api/projects/status/id677xpw1dguo7iw?svg=true)](https://ci.appveyor.com/project/rust-lang-libs/rust-clippy)
7 [![Current Version](https://meritbadge.herokuapp.com/clippy)](https://crates.io/crates/clippy)
8 [![License: MPL-2.0](https://img.shields.io/crates/l/clippy.svg)](#license)
9
10 A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
11
12 [There are 273 lints included in this crate!](https://rust-lang-nursery.github.io/rust-clippy/master/index.html)
13
14 We have a bunch of lint categories to allow you to choose how much Clippy is supposed to ~~annoy~~ help you:
15
16 * `clippy` (everything that has no false positives)
17 * `clippy_pedantic` (everything)
18 * `clippy_nursery` (new lints that aren't quite ready yet)
19 * `clippy_style` (code that should be written in a more idiomatic way)
20 * `clippy_complexity` (code that does something simple but in a complex way)
21 * `clippy_perf` (code that can be written in a faster way)
22 * `clippy_cargo` (checks against the cargo manifest)
23 * **`clippy_correctness`** (code that is just outright wrong or very very useless)
24
25 More to come, please [file an issue](https://github.com/rust-lang-nursery/rust-clippy/issues) if you have ideas!
26
27 Table of contents:
28
29 *   [Usage instructions](#usage)
30 *   [Configuration](#configuration)
31 *   [License](#license)
32
33 ## Usage
34
35 Since this is a tool for helping the developer of a library or application
36 write better code, it is recommended not to include Clippy as a hard dependency.
37 Options include using it as an optional dependency, as a cargo subcommand, or
38 as an included feature during build. These options are detailed below.
39
40 ### As a cargo subcommand (`cargo clippy`)
41
42 One way to use Clippy is by installing Clippy through rustup as a cargo
43 subcommand.
44
45 #### Step 1: Install rustup
46
47 You can install [rustup](http://rustup.rs/) on supported platforms. This will help
48 us install clippy and its dependencies.
49
50 If you already have rustup installed, update to ensure you have the latest
51 rustup and compiler:
52
53 ```terminal
54 rustup update
55 ```
56
57 #### Step 2: Install nightly toolchain
58
59 As a general rule Clippy will only work with the *latest* Rust nightly for now.
60
61 To install Rust nightly with [rustup](https://rustup.rs/):
62
63 ```terminal
64 rustup install nightly
65 ```
66
67 #### Step 3: Install clippy
68
69 Once you have rustup and the nightly toolchain installed, run the following command:
70
71 ```terminal
72 rustup component add clippy-preview --toolchain=nightly
73 ```
74
75 Now you can run Clippy by invoking `cargo +nightly clippy`.
76
77 ### Running Clippy from the command line without installing it
78
79 To have cargo compile your crate with Clippy without Clippy installation
80 in your code, you can use:
81
82 ```terminal
83 cargo run --bin cargo-clippy --manifest-path=path_to_clippys_Cargo.toml
84 ```
85
86 *[Note](https://github.com/rust-lang-nursery/rust-clippy/wiki#a-word-of-warning):*
87 Be sure that Clippy was compiled with the same version of rustc that cargo invokes here!
88
89 ## Configuration
90
91 Some lints can be configured in a TOML file named with `clippy.toml` or `.clippy.toml`. It contains basic `variable = value` mapping eg.
92
93 ```toml
94 blacklisted-names = ["toto", "tata", "titi"]
95 cyclomatic-complexity-threshold = 30
96 ```
97
98 See the [list of lints](https://rust-lang-nursery.github.io/rust-clippy/master/index.html) for more information about which lints can be configured and the
99 meaning of the variables.
100
101 To deactivate the “for further information visit *lint-link*” message you can
102 define the `CLIPPY_DISABLE_DOCS_LINKS` environment variable.
103
104 ### Allowing/denying lints
105
106 You can add options  to `allow`/`warn`/`deny`:
107
108 *   the whole set of `Warn` lints using the `clippy` lint group (`#![deny(clippy)]`)
109
110 *   all lints using both the `clippy` and `clippy_pedantic` lint groups (`#![deny(clippy)]`,
111     `#![deny(clippy_pedantic)]`). Note that `clippy_pedantic` contains some very aggressive
112     lints prone to false positives.
113
114 *   only some lints (`#![deny(single_match, box_vec)]`, etc)
115
116 *   `allow`/`warn`/`deny` can be limited to a single function or module using `#[allow(...)]`, etc
117
118 Note: `deny` produces errors instead of warnings.
119
120 For convenience, `cargo clippy` automatically defines a `cargo-clippy`
121 feature. This lets you set lint levels and compile with or without Clippy
122 transparently:
123
124 ```rust
125 #[cfg_attr(feature = "cargo-clippy", allow(needless_lifetimes))]
126 ```
127
128 ## Updating rustc
129
130 Sometimes, rustc moves forward without Clippy catching up. Therefore updating
131 rustc may leave Clippy a non-functional state until we fix the resulting
132 breakage.
133
134 You can use the [rust-update](rust-update) script to update rustc only if
135 Clippy would also update correctly.
136
137 ## License
138
139 Licensed under [MPL](https://www.mozilla.org/MPL/2.0/).
140 If you're having issues with the license, let me know and I'll try to change it to something more permissive.