]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/book/src/development/basics.md
Auto merge of #99203 - GuillaumeGomez:rollup-b2re0dv, r=GuillaumeGomez
[rust.git] / src / tools / clippy / book / src / development / basics.md
1 # Basics for hacking on Clippy
2
3 This document explains the basics for hacking on Clippy. Besides others, this
4 includes how to build and test Clippy. For a more in depth description on the
5 codebase take a look at [Adding Lints] or [Common Tools].
6
7 [Adding Lints]: https://github.com/rust-lang/rust-clippy/blob/master/doc/adding_lints.md
8 [Common Tools]: https://github.com/rust-lang/rust-clippy/blob/master/doc/common_tools_writing_lints.md
9
10 - [Basics for hacking on Clippy](#basics-for-hacking-on-clippy)
11   - [Get the Code](#get-the-code)
12   - [Building and Testing](#building-and-testing)
13   - [`cargo dev`](#cargo-dev)
14   - [lintcheck](#lintcheck)
15   - [PR](#pr)
16   - [Common Abbreviations](#common-abbreviations)
17   - [Install from source](#install-from-source)
18
19 ## Get the Code
20
21 First, make sure you have checked out the latest version of Clippy. If this is
22 your first time working on Clippy, create a fork of the repository and clone it
23 afterwards with the following command:
24
25 ```bash
26 git clone git@github.com:<your-username>/rust-clippy
27 ```
28
29 If you've already cloned Clippy in the past, update it to the latest version:
30
31 ```bash
32 # If the upstream remote has not been added yet
33 git remote add upstream https://github.com/rust-lang/rust-clippy
34 # upstream has to be the remote of the rust-lang/rust-clippy repo
35 git fetch upstream
36 # make sure that you are on the master branch
37 git checkout master
38 # rebase your master branch on the upstream master
39 git rebase upstream/master
40 # push to the master branch of your fork
41 git push
42 ```
43
44 ## Building and Testing
45
46 You can build and test Clippy like every other Rust project:
47
48 ```bash
49 cargo build  # builds Clippy
50 cargo test   # tests Clippy
51 ```
52
53 Since Clippy's test suite is pretty big, there are some commands that only run a
54 subset of Clippy's tests:
55
56 ```bash
57 # only run UI tests
58 cargo uitest
59 # only run UI tests starting with `test_`
60 TESTNAME="test_" cargo uitest
61 # only run dogfood tests
62 cargo test --test dogfood
63 ```
64
65 If the output of a [UI test] differs from the expected output, you can update
66 the reference file with:
67
68 ```bash
69 cargo dev bless
70 ```
71
72 For example, this is necessary, if you fix a typo in an error message of a lint
73 or if you modify a test file to add a test case.
74
75 > _Note:_ This command may update more files than you intended. In that case
76 > only commit the files you wanted to update.
77
78 [UI test]: https://rustc-dev-guide.rust-lang.org/tests/adding.html#guide-to-the-ui-tests
79
80 ## `cargo dev`
81
82 Clippy has some dev tools to make working on Clippy more convenient. These tools
83 can be accessed through the `cargo dev` command. Available tools are listed
84 below. To get more information about these commands, just call them with
85 `--help`.
86
87 ```bash
88 # formats the whole Clippy codebase and all tests
89 cargo dev fmt
90 # register or update lint names/groups/...
91 cargo dev update_lints
92 # create a new lint and register it
93 cargo dev new_lint
94 # automatically formatting all code before each commit
95 cargo dev setup git-hook
96 # (experimental) Setup Clippy to work with IntelliJ-Rust
97 cargo dev setup intellij
98 ```
99
100 More about intellij command usage and reasons
101 [here](https://github.com/rust-lang/rust-clippy/blob/master/CONTRIBUTING.md#intellij-rust)
102
103 ## lintcheck
104
105 `cargo lintcheck` will build and run clippy on a fixed set of crates and
106 generate a log of the results.  You can `git diff` the updated log against its
107 previous version and see what impact your lint made on a small set of crates.
108 If you add a new lint, please audit the resulting warnings and make sure there
109 are no false positives and that the suggestions are valid.
110
111 Refer to the tools [README] for more details.
112
113 [README]: https://github.com/rust-lang/rust-clippy/blob/master/lintcheck/README.md
114
115 ## PR
116
117 We follow a rustc no merge-commit policy. See
118 <https://rustc-dev-guide.rust-lang.org/contributing.html#opening-a-pr>.
119
120 ## Common Abbreviations
121
122 | Abbreviation | Meaning                                |
123 | ------------ | -------------------------------------- |
124 | UB           | Undefined Behavior                     |
125 | FP           | False Positive                         |
126 | FN           | False Negative                         |
127 | ICE          | Internal Compiler Error                |
128 | AST          | Abstract Syntax Tree                   |
129 | MIR          | Mid-Level Intermediate Representation  |
130 | HIR          | High-Level Intermediate Representation |
131 | TCX          | Type context                           |
132
133 This is a concise list of abbreviations that can come up during Clippy
134 development. An extensive general list can be found in the [rustc-dev-guide
135 glossary][glossary]. Always feel free to ask if an abbreviation or meaning is
136 unclear to you.
137
138 ## Install from source
139
140 If you are hacking on Clippy and want to install it from source, do the
141 following:
142
143 First, take note of the toolchain
144 [override](https://rust-lang.github.io/rustup/overrides.html) in
145 `/rust-toolchain`. We will use this override to install Clippy into the right
146 toolchain.
147
148 > Tip: You can view the active toolchain for the current directory with `rustup
149 > show active-toolchain`.
150
151 From the Clippy project root, run the following command to build the Clippy
152 binaries and copy them into the toolchain directory. This will override the
153 currently installed Clippy component.
154
155 ```terminal
156 cargo build --release --bin cargo-clippy --bin clippy-driver -Zunstable-options --out-dir "$(rustc --print=sysroot)/bin"
157 ```
158
159 Now you may run `cargo clippy` in any project, using the toolchain where you
160 just installed Clippy.
161
162 ```terminal
163 cd my-project
164 cargo +nightly-2021-07-01 clippy
165 ```
166
167 ...or `clippy-driver`
168
169 ```terminal
170 clippy-driver +nightly-2021-07-01 <filename>
171 ```
172
173 If you need to restore the default Clippy installation, run the following (from
174 the Clippy project root).
175
176 ```terminal
177 rustup component remove clippy
178 rustup component add clippy
179 ```
180
181 > **DO NOT** install using `cargo install --path . --force` since this will
182 > overwrite rustup
183 > [proxies](https://rust-lang.github.io/rustup/concepts/proxies.html). That is,
184 > `~/.cargo/bin/cargo-clippy` and `~/.cargo/bin/clippy-driver` should be hard or
185 > soft links to `~/.cargo/bin/rustup`. You can repair these by running `rustup
186 > update`.
187
188 [glossary]: https://rustc-dev-guide.rust-lang.org/appendix/glossary.html