]> git.lizzy.rs Git - rust.git/blob - README.md
29bfebe45838facc9086e8711ec64053d1ae1dc3
[rust.git] / README.md
1 # Clippy
2
3 [![Clippy Test](https://github.com/rust-lang/rust-clippy/workflows/Clippy%20Test/badge.svg?branch=auto&event=push)](https://github.com/rust-lang/rust-clippy/actions?query=workflow%3A%22Clippy+Test%22+event%3Apush+branch%3Aauto)
4 [![License: MIT OR Apache-2.0](https://img.shields.io/crates/l/clippy.svg)](#license)
5
6 A collection of lints to catch common mistakes and improve your [Rust](https://github.com/rust-lang/rust) code.
7
8 [There are over 450 lints included in this crate!](https://rust-lang.github.io/rust-clippy/master/index.html)
9
10 Lints are divided into categories, each with a default [lint level](https://doc.rust-lang.org/rustc/lints/levels.html).
11 You can choose how much Clippy is supposed to ~~annoy~~ help you by changing the lint level by category.
12
13 | Category              | Description                                                                         | Default level |
14 | --------------------- | ----------------------------------------------------------------------------------- | ------------- |
15 | `clippy::all`         | all lints that are on by default (correctness, suspicious, style, complexity, perf) | **warn/deny** |
16 | `clippy::correctness` | code that is outright wrong or useless                                              | **deny**      |
17 | `clippy::suspicious`  | code that is most likely wrong or useless                                           | **warn**      |
18 | `clippy::style`       | code that should be written in a more idiomatic way                                 | **warn**      |
19 | `clippy::complexity`  | code that does something simple but in a complex way                                | **warn**      |
20 | `clippy::perf`        | code that can be written to run faster                                              | **warn**      |
21 | `clippy::pedantic`    | lints which are rather strict or might have false positives                         | allow         |
22 | `clippy::nursery`     | new lints that are still under development                                          | allow         |
23 | `clippy::cargo`       | lints for the cargo manifest                                                        | allow         |
24
25 More to come, please [file an issue](https://github.com/rust-lang/rust-clippy/issues) if you have ideas!
26
27 The [lint list](https://rust-lang.github.io/rust-clippy/master/index.html) also contains "restriction lints", which are
28 for things which are usually not considered "bad", but may be useful to turn on in specific cases. These should be used
29 very selectively, if at all.
30
31 Table of contents:
32
33 *   [Usage instructions](#usage)
34 *   [Configuration](#configuration)
35 *   [Contributing](#contributing)
36 *   [License](#license)
37
38 ## Usage
39
40 Below are instructions on how to use Clippy as a subcommand, compiled from source
41 or in Travis CI.
42
43 ### As a cargo subcommand (`cargo clippy`)
44
45 One way to use Clippy is by installing Clippy through rustup as a cargo
46 subcommand.
47
48 #### Step 1: Install rustup
49
50 You can install [rustup](https://rustup.rs/) on supported platforms. This will help
51 us install Clippy and its dependencies.
52
53 If you already have rustup installed, update to ensure you have the latest
54 rustup and compiler:
55
56 ```terminal
57 rustup update
58 ```
59
60 #### Step 2: Install Clippy
61
62 Once you have rustup and the latest stable release (at least Rust 1.29) installed, run the following command:
63
64 ```terminal
65 rustup component add clippy
66 ```
67 If it says that it can't find the `clippy` component, please run `rustup self update`.
68
69 #### Step 3: Run Clippy
70
71 Now you can run Clippy by invoking the following command:
72
73 ```terminal
74 cargo clippy
75 ```
76
77 #### Automatically applying Clippy suggestions
78
79 Clippy can automatically apply some lint suggestions.
80 Note that this is still experimental and only supported on the nightly channel:
81
82 ```terminal
83 cargo clippy --fix -Z unstable-options
84 ```
85
86 #### Workspaces
87
88 All the usual workspace options should work with Clippy. For example the following command
89 will run Clippy on the `example` crate:
90
91 ```terminal
92 cargo clippy -p example
93 ```
94
95 As with `cargo check`, this includes dependencies that are members of the workspace, like path dependencies.
96 If you want to run Clippy **only** on the given crate, use the `--no-deps` option like this:
97
98 ```terminal
99 cargo clippy -p example -- --no-deps 
100 ```
101
102 ### As a rustc replacement (`clippy-driver`)
103
104 Clippy can also be used in projects that do not use cargo. To do so, you will need to replace
105 your `rustc` compilation commands with `clippy-driver`. For example, if your project runs:
106
107 ```terminal
108 rustc --edition 2018 -Cpanic=abort foo.rs
109 ```
110
111 Then, to enable Clippy, you will need to call:
112
113 ```terminal
114 clippy-driver --edition 2018 -Cpanic=abort foo.rs
115 ```
116
117 Note that `rustc` will still run, i.e. it will still emit the output files it normally does.
118
119 ### Travis CI
120
121 You can add Clippy to Travis CI in the same way you use it locally:
122
123 ```yml
124 language: rust
125 rust:
126   - stable
127   - beta
128 before_script:
129   - rustup component add clippy
130 script:
131   - cargo clippy
132   # if you want the build job to fail when encountering warnings, use
133   - cargo clippy -- -D warnings
134   # in order to also check tests and non-default crate features, use
135   - cargo clippy --all-targets --all-features -- -D warnings
136   - cargo test
137   # etc.
138 ```
139
140 Note that adding `-D warnings` will cause your build to fail if **any** warnings are found in your code.
141 That includes warnings found by rustc (e.g. `dead_code`, etc.). If you want to avoid this and only cause
142 an error for Clippy warnings, use `#![deny(clippy::all)]` in your code or `-D clippy::all` on the command
143 line. (You can swap `clippy::all` with the specific lint category you are targeting.)
144
145 ## Configuration
146
147 Some lints can be configured in a TOML file named `clippy.toml` or `.clippy.toml`. It contains a basic `variable =
148 value` mapping eg.
149
150 ```toml
151 avoid-breaking-exported-api = false
152 blacklisted-names = ["toto", "tata", "titi"]
153 cognitive-complexity-threshold = 30
154 ```
155
156 See the [list of lints](https://rust-lang.github.io/rust-clippy/master/index.html) for more information about which
157 lints can be configured and the meaning of the variables.
158
159 To deactivate the “for further information visit *lint-link*” message you can
160 define the `CLIPPY_DISABLE_DOCS_LINKS` environment variable.
161
162 ### Allowing/denying lints
163
164 You can add options to your code to `allow`/`warn`/`deny` Clippy lints:
165
166 *   the whole set of `Warn` lints using the `clippy` lint group (`#![deny(clippy::all)]`)
167
168 *   all lints using both the `clippy` and `clippy::pedantic` lint groups (`#![deny(clippy::all)]`,
169     `#![deny(clippy::pedantic)]`). Note that `clippy::pedantic` contains some very aggressive
170     lints prone to false positives.
171
172 *   only some lints (`#![deny(clippy::single_match, clippy::box_vec)]`, etc.)
173
174 *   `allow`/`warn`/`deny` can be limited to a single function or module using `#[allow(...)]`, etc.
175
176 Note: `allow` means to suppress the lint for your code. With `warn` the lint
177 will only emit a warning, while with `deny` the lint will emit an error, when
178 triggering for your code. An error causes clippy to exit with an error code, so
179 is useful in scripts like CI/CD.
180
181 If you do not want to include your lint levels in your code, you can globally
182 enable/disable lints by passing extra flags to Clippy during the run:
183
184 To allow `lint_name`, run
185
186 ```terminal
187 cargo clippy -- -A clippy::lint_name
188 ```
189
190 And to warn on `lint_name`, run
191
192 ```terminal
193 cargo clippy -- -W clippy::lint_name
194 ```
195
196 This also works with lint groups. For example you
197 can run Clippy with warnings for all lints enabled:
198 ```terminal
199 cargo clippy -- -W clippy::pedantic
200 ```
201
202 If you care only about a single lint, you can allow all others and then explicitly warn on
203 the lint(s) you are interested in:
204 ```terminal
205 cargo clippy -- -A clippy::all -W clippy::useless_format -W clippy::...
206 ```
207
208 ### Specifying the minimum supported Rust version
209
210 Projects that intend to support old versions of Rust can disable lints pertaining to newer features by
211 specifying the minimum supported Rust version (MSRV) in the clippy configuration file.
212
213 ```toml
214 msrv = "1.30.0"
215 ```
216
217 The MSRV can also be specified as an inner attribute, like below.
218
219 ```rust
220 #![feature(custom_inner_attributes)]
221 #![clippy::msrv = "1.30.0"]
222
223 fn main() {
224   ...
225 }
226 ```
227
228 You can also omit the patch version when specifying the MSRV, so `msrv = 1.30`
229 is equivalent to `msrv = 1.30.0`.
230
231 Note: `custom_inner_attributes` is an unstable feature so it has to be enabled explicitly.
232
233 Lints that recognize this configuration option can be found [here](https://rust-lang.github.io/rust-clippy/master/index.html#msrv)
234
235 ## Contributing
236
237 If you want to contribute to Clippy, you can find more information in [CONTRIBUTING.md](https://github.com/rust-lang/rust-clippy/blob/master/CONTRIBUTING.md).
238
239 ## License
240
241 Copyright 2014-2021 The Rust Project Developers
242
243 Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
244 [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0)> or the MIT license
245 <LICENSE-MIT or [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT)>, at your
246 option. Files in the project may not be
247 copied, modified, or distributed except according to those terms.