]> git.lizzy.rs Git - rust.git/blob - README.md
Merge pull request #3283 from etaoins/dont-suggest-cloned-for-map-box-deref
[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: MIT/Apache-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 279 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::all` (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 Clippy
58
59 Once you have rustup and the latest stable release (at least Rust 1.29) installed, run the following command:
60
61 ```terminal
62 rustup component add clippy-preview
63 ```
64
65 Now you can run Clippy by invoking `cargo clippy`.
66
67 If it says that it can't find the `clippy` subcommand, please run `rustup self update`
68
69 ### Running Clippy from the command line without installing it
70
71 To have cargo compile your crate with Clippy without Clippy installation
72 in your code, you can use:
73
74 ```terminal
75 cargo run --bin cargo-clippy --manifest-path=path_to_clippys_Cargo.toml
76 ```
77
78 *[Note](https://github.com/rust-lang-nursery/rust-clippy/wiki#a-word-of-warning):*
79 Be sure that Clippy was compiled with the same version of rustc that cargo invokes here!
80
81 ### Travis CI
82
83 You can add Clippy to Travis CI in the same way you use it locally:
84
85 ```yml
86 language: rust
87 rust:
88   - stable
89   - beta
90 before_script:
91   - rustup component add clippy-preview
92 script:
93   - cargo clippy
94   # if you want the build job to fail when encountering warnings, use
95   - cargo clippy -- -D warnings
96   # in order to also check tests and none-default crate features, use
97   - cargo clippy --all-targets --all-features -- -D warnings
98   - cargo test
99   # etc.
100 ```
101
102 ## Configuration
103
104 Some lints can be configured in a TOML file named `clippy.toml` or `.clippy.toml`. It contains a basic `variable = value` mapping eg.
105
106 ```toml
107 blacklisted-names = ["toto", "tata", "titi"]
108 cyclomatic-complexity-threshold = 30
109 ```
110
111 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
112 meaning of the variables.
113
114 To deactivate the “for further information visit *lint-link*” message you can
115 define the `CLIPPY_DISABLE_DOCS_LINKS` environment variable.
116
117 ### Allowing/denying lints
118
119 You can add options to your code to `allow`/`warn`/`deny` Clippy lints:
120
121 *   the whole set of `Warn` lints using the `clippy` lint group (`#![deny(clippy::all)]`)
122
123 *   all lints using both the `clippy` and `clippy::pedantic` lint groups (`#![deny(clippy::all)]`,
124     `#![deny(clippy::pedantic)]`). Note that `clippy::pedantic` contains some very aggressive
125     lints prone to false positives.
126
127 *   only some lints (`#![deny(clippy::single_match, clippy::box_vec)]`, etc)
128
129 *   `allow`/`warn`/`deny` can be limited to a single function or module using `#[allow(...)]`, etc
130
131 Note: `deny` produces errors instead of warnings.
132
133 Note: To use the new `clippy::lint_name` syntax, `#![feature(tool_lints)]` has to be activated 
134 currently. If you want to compile your code with the stable toolchain you can use a `cfg_attr` to 
135 activate the `tool_lints` feature:
136 ```rust
137 #![cfg_attr(feature = "cargo-clippy", feature(tool_lints))]
138 #![cfg_attr(feature = "cargo-clippy", allow(clippy::lint_name))]
139 ```
140
141 For this to work you have to use Clippy on the nightly toolchain: `cargo +nightly clippy`. If you 
142 want to use Clippy with the stable toolchain, you can stick to the old unscoped method to 
143 enable/disable Clippy lints until `tool_lints` are stable:
144 ```rust
145 #![cfg_attr(feature = "cargo-clippy", allow(clippy_lint))]
146 ```
147
148 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 lint_name` will run clippy with `lint_name` disabled and `cargo clippy -- -W lint_name` will run it with that enabled. On newer compilers you may need to use `clippy::lint_name` instead.
149
150 ## License
151
152 Copyright 2014-2018 The Rust Project Developers
153
154 Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
155 http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
156 <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
157 option. All files in the project carrying such notice may not be
158 copied, modified, or distributed except according to those terms.