]> git.lizzy.rs Git - rust.git/blob - doc/adding_lints.md
Auto merge of #7937 - flip1995:rustfmt-skip-artefact, r=Manishearth
[rust.git] / doc / adding_lints.md
1 # Adding a new lint
2
3 You are probably here because you want to add a new lint to Clippy. If this is
4 the first time you're contributing to Clippy, this document guides you through
5 creating an example lint from scratch.
6
7 To get started, we will create a lint that detects functions called `foo`,
8 because that's clearly a non-descriptive name.
9
10 - [Adding a new lint](#adding-a-new-lint)
11   - [Setup](#setup)
12   - [Getting Started](#getting-started)
13   - [Testing](#testing)
14     - [Cargo lints](#cargo-lints)
15   - [Rustfix tests](#rustfix-tests)
16   - [Edition 2018 tests](#edition-2018-tests)
17   - [Testing manually](#testing-manually)
18   - [Lint declaration](#lint-declaration)
19   - [Lint registration](#lint-registration)
20   - [Lint passes](#lint-passes)
21   - [Emitting a lint](#emitting-a-lint)
22   - [Adding the lint logic](#adding-the-lint-logic)
23   - [Specifying the lint's minimum supported Rust version (MSRV)](#specifying-the-lints-minimum-supported-rust-version-msrv)
24   - [Author lint](#author-lint)
25   - [Documentation](#documentation)
26   - [Running rustfmt](#running-rustfmt)
27   - [Debugging](#debugging)
28   - [PR Checklist](#pr-checklist)
29   - [Adding configuration to a lint](#adding-configuration-to-a-lint)
30   - [Cheatsheet](#cheatsheet)
31
32 ## Setup
33
34 See the [Basics](basics.md#get-the-code) documentation.
35
36 ## Getting Started
37
38 There is a bit of boilerplate code that needs to be set up when creating a new
39 lint. Fortunately, you can use the clippy dev tools to handle this for you. We
40 are naming our new lint `foo_functions` (lints are generally written in snake
41 case), and we don't need type information so it will have an early pass type
42 (more on this later on). If you're not sure if the name you chose fits the lint,
43 take a look at our [lint naming guidelines][lint_naming]. To get started on this
44 lint you can run `cargo dev new_lint --name=foo_functions --pass=early
45 --category=pedantic` (category will default to nursery if not provided). This
46 command will create two files: `tests/ui/foo_functions.rs` and
47 `clippy_lints/src/foo_functions.rs`, as well as
48 [registering the lint](#lint-registration). For cargo lints, two project
49 hierarchies (fail/pass) will be created by default under `tests/ui-cargo`.
50
51 Next, we'll open up these files and add our lint!
52
53 ## Testing
54
55 Let's write some tests first that we can execute while we iterate on our lint.
56
57 Clippy uses UI tests for testing. UI tests check that the output of Clippy is
58 exactly as expected. Each test is just a plain Rust file that contains the code
59 we want to check. The output of Clippy is compared against a `.stderr` file.
60 Note that you don't have to create this file yourself, we'll get to
61 generating the `.stderr` files further down.
62
63 We start by opening the test file created at `tests/ui/foo_functions.rs`.
64
65 Update the file with some examples to get started:
66
67 ```rust
68 #![warn(clippy::foo_functions)]
69
70 // Impl methods
71 struct A;
72 impl A {
73     pub fn fo(&self) {}
74     pub fn foo(&self) {}
75     pub fn food(&self) {}
76 }
77
78 // Default trait methods
79 trait B {
80     fn fo(&self) {}
81     fn foo(&self) {}
82     fn food(&self) {}
83 }
84
85 // Plain functions
86 fn fo() {}
87 fn foo() {}
88 fn food() {}
89
90 fn main() {
91     // We also don't want to lint method calls
92     foo();
93     let a = A;
94     a.foo();
95 }
96 ```
97
98 Now we can run the test with `TESTNAME=foo_functions cargo uitest`,
99 currently this test is meaningless though.
100
101 While we are working on implementing our lint, we can keep running the UI
102 test. That allows us to check if the output is turning into what we want.
103
104 Once we are satisfied with the output, we need to run
105 `cargo dev bless` to update the `.stderr` file for our lint.
106 Please note that, we should run `TESTNAME=foo_functions cargo uitest`
107 every time before running `cargo dev bless`.
108 Running `TESTNAME=foo_functions cargo uitest` should pass then. When we commit
109 our lint, we need to commit the generated `.stderr` files, too. In general, you
110 should only commit files changed by `cargo dev bless` for the
111 specific lint you are creating/editing. Note that if the generated files are
112 empty, they should be removed.
113
114 Note that you can run multiple test files by specifying a comma separated list:
115 `TESTNAME=foo_functions,test2,test3`.
116
117 ### Cargo lints
118
119 For cargo lints, the process of testing differs in that we are interested in
120 the `Cargo.toml` manifest file. We also need a minimal crate associated
121 with that manifest.
122
123 If our new lint is named e.g. `foo_categories`, after running `cargo dev new_lint`
124 we will find by default two new crates, each with its manifest file:
125
126 * `tests/ui-cargo/foo_categories/fail/Cargo.toml`: this file should cause the new lint to raise an error.
127 * `tests/ui-cargo/foo_categories/pass/Cargo.toml`: this file should not trigger the lint.
128
129 If you need more cases, you can copy one of those crates (under `foo_categories`) and rename it.
130
131 The process of generating the `.stderr` file is the same, and prepending the `TESTNAME`
132 variable to `cargo uitest` works too.
133
134 ## Rustfix tests
135
136 If the lint you are working on is making use of structured suggestions, the
137 test file should include a `// run-rustfix` comment at the top. This will
138 additionally run [rustfix] for that test. Rustfix will apply the suggestions
139 from the lint to the code of the test file and compare that to the contents of
140 a `.fixed` file.
141
142 Use `cargo dev bless` to automatically generate the
143 `.fixed` file after running the tests.
144
145 [rustfix]: https://github.com/rust-lang/rustfix
146
147 ## Edition 2018 tests
148
149 Some features require the 2018 edition to work (e.g. `async_await`), but
150 compile-test tests run on the 2015 edition by default. To change this behavior
151 add `// edition:2018` at the top of the test file (note that it's space-sensitive).
152
153 ## Testing manually
154
155 Manually testing against an example file can be useful if you have added some
156 `println!`s and the test suite output becomes unreadable. To try Clippy with
157 your local modifications, run
158
159 ```
160 env __CLIPPY_INTERNAL_TESTS=true cargo run --bin clippy-driver -- -L ./target/debug input.rs
161 ```
162
163 from the working copy root. With tests in place, let's have a look at
164 implementing our lint now.
165
166 ## Lint declaration
167
168 Let's start by opening the new file created in the `clippy_lints` crate
169 at `clippy_lints/src/foo_functions.rs`. That's the crate where all the
170 lint code is. This file has already imported some initial things we will need:
171
172 ```rust
173 use rustc_lint::{EarlyLintPass, EarlyContext};
174 use rustc_session::{declare_lint_pass, declare_tool_lint};
175 use rustc_ast::ast::*;
176 ```
177
178 The next step is to update the lint declaration. Lints are declared using the
179 [`declare_clippy_lint!`][declare_clippy_lint] macro, and we just need to update
180 the auto-generated lint declaration to have a real description, something like this:
181
182 ```rust
183 declare_clippy_lint! {
184     /// ### What it does
185     ///
186     /// ### Why is this bad?
187     ///
188     /// ### Example
189     /// ```rust
190     /// // example code
191     /// ```
192     pub FOO_FUNCTIONS,
193     pedantic,
194     "function named `foo`, which is not a descriptive name"
195 }
196 ```
197
198 * The section of lines prefixed with `///` constitutes the lint documentation
199   section. This is the default documentation style and will be displayed
200   [like this][example_lint_page]. To render and open this documentation locally
201   in a browser, run `cargo dev serve`.
202 * `FOO_FUNCTIONS` is the name of our lint. Be sure to follow the
203   [lint naming guidelines][lint_naming] here when naming your lint.
204   In short, the name should state the thing that is being checked for and
205   read well when used with `allow`/`warn`/`deny`.
206 * `pedantic` sets the lint level to `Allow`.
207   The exact mapping can be found [here][category_level_mapping]
208 * The last part should be a text that explains what exactly is wrong with the
209   code
210
211 The rest of this file contains an empty implementation for our lint pass,
212 which in this case is `EarlyLintPass` and should look like this:
213
214 ```rust
215 // clippy_lints/src/foo_functions.rs
216
217 // .. imports and lint declaration ..
218
219 declare_lint_pass!(FooFunctions => [FOO_FUNCTIONS]);
220
221 impl EarlyLintPass for FooFunctions {}
222 ```
223
224 [declare_clippy_lint]: https://github.com/rust-lang/rust-clippy/blob/557f6848bd5b7183f55c1e1522a326e9e1df6030/clippy_lints/src/lib.rs#L60
225 [example_lint_page]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure
226 [lint_naming]: https://rust-lang.github.io/rfcs/0344-conventions-galore.html#lints
227 [category_level_mapping]: https://github.com/rust-lang/rust-clippy/blob/557f6848bd5b7183f55c1e1522a326e9e1df6030/clippy_lints/src/lib.rs#L110
228
229 ## Lint registration
230
231 When using `cargo dev new_lint`, the lint is automatically registered and
232 nothing more has to be done.
233
234 When declaring a new lint by hand and `cargo dev update_lints` is used, the lint
235 pass may have to be registered manually in the `register_plugins` function in
236 `clippy_lints/src/lib.rs`:
237
238 ```rust
239 store.register_early_pass(|| Box::new(foo_functions::FooFunctions));
240 ```
241
242 As one may expect, there is a corresponding `register_late_pass` method
243 available as well. Without a call to one of `register_early_pass` or
244 `register_late_pass`, the lint pass in question will not be run.
245
246 One reason that `cargo dev update_lints` does not automate this step is that
247 multiple lints can use the same lint pass, so registering the lint pass may
248 already be done when adding a new lint. Another reason that this step is not
249 automated is that the order that the passes are registered determines the order
250 the passes actually run, which in turn affects the order that any emitted lints
251 are output in.
252
253 ## Lint passes
254
255 Writing a lint that only checks for the name of a function means that we only
256 have to deal with the AST and don't have to deal with the type system at all.
257 This is good, because it makes writing this particular lint less complicated.
258
259 We have to make this decision with every new Clippy lint. It boils down to using
260 either [`EarlyLintPass`][early_lint_pass] or [`LateLintPass`][late_lint_pass].
261
262 In short, the `LateLintPass` has access to type information while the
263 `EarlyLintPass` doesn't. If you don't need access to type information, use the
264 `EarlyLintPass`. The `EarlyLintPass` is also faster. However linting speed
265 hasn't really been a concern with Clippy so far.
266
267 Since we don't need type information for checking the function name, we used
268 `--pass=early` when running the new lint automation and all the imports were
269 added accordingly.
270
271 [early_lint_pass]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lint/trait.EarlyLintPass.html
272 [late_lint_pass]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lint/trait.LateLintPass.html
273
274 ## Emitting a lint
275
276 With UI tests and the lint declaration in place, we can start working on the
277 implementation of the lint logic.
278
279 Let's start by implementing the `EarlyLintPass` for our `FooFunctions`:
280
281 ```rust
282 impl EarlyLintPass for FooFunctions {
283     fn check_fn(&mut self, cx: &EarlyContext<'_>, fn_kind: FnKind<'_>, span: Span, _: NodeId) {
284         // TODO: Emit lint here
285     }
286 }
287 ```
288
289 We implement the [`check_fn`][check_fn] method from the
290 [`EarlyLintPass`][early_lint_pass] trait. This gives us access to various
291 information about the function that is currently being checked. More on that in
292 the next section. Let's worry about the details later and emit our lint for
293 *every* function definition first.
294
295 Depending on how complex we want our lint message to be, we can choose from a
296 variety of lint emission functions. They can all be found in
297 [`clippy_utils/src/diagnostics.rs`][diagnostics].
298
299 `span_lint_and_help` seems most appropriate in this case. It allows us to
300 provide an extra help message and we can't really suggest a better name
301 automatically. This is how it looks:
302
303 ```rust
304 impl EarlyLintPass for FooFunctions {
305     fn check_fn(&mut self, cx: &EarlyContext<'_>, fn_kind: FnKind<'_>, span: Span, _: NodeId) {
306         span_lint_and_help(
307             cx,
308             FOO_FUNCTIONS,
309             span,
310             "function named `foo`",
311             None,
312             "consider using a more meaningful name"
313         );
314     }
315 }
316 ```
317
318 Running our UI test should now produce output that contains the lint message.
319
320 According to [the rustc-dev-guide], the text should be matter of fact and avoid
321 capitalization and periods, unless multiple sentences are needed.
322 When code or an identifier must appear in a message or label, it should be
323 surrounded with single grave accents \`.
324
325 [check_fn]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lint/trait.EarlyLintPass.html#method.check_fn
326 [diagnostics]: https://github.com/rust-lang/rust-clippy/blob/master/clippy_utils/src/diagnostics.rs
327 [the rustc-dev-guide]: https://rustc-dev-guide.rust-lang.org/diagnostics.html
328
329 ## Adding the lint logic
330
331 Writing the logic for your lint will most likely be different from our example,
332 so this section is kept rather short.
333
334 Using the [`check_fn`][check_fn] method gives us access to [`FnKind`][fn_kind]
335 that has the [`FnKind::Fn`] variant. It provides access to the name of the
336 function/method via an [`Ident`][ident].
337
338 With that we can expand our `check_fn` method to:
339
340 ```rust
341 impl EarlyLintPass for FooFunctions {
342     fn check_fn(&mut self, cx: &EarlyContext<'_>, fn_kind: FnKind<'_>, span: Span, _: NodeId) {
343         if is_foo_fn(fn_kind) {
344             span_lint_and_help(
345                 cx,
346                 FOO_FUNCTIONS,
347                 span,
348                 "function named `foo`",
349                 None,
350                 "consider using a more meaningful name"
351             );
352         }
353     }
354 }
355 ```
356
357 We separate the lint conditional from the lint emissions because it makes the
358 code a bit easier to read. In some cases this separation would also allow to
359 write some unit tests (as opposed to only UI tests) for the separate function.
360
361 In our example, `is_foo_fn` looks like:
362
363 ```rust
364 // use statements, impl EarlyLintPass, check_fn, ..
365
366 fn is_foo_fn(fn_kind: FnKind<'_>) -> bool {
367     match fn_kind {
368         FnKind::Fn(_, ident, ..) => {
369             // check if `fn` name is `foo`
370             ident.name.as_str() == "foo"
371         }
372         // ignore closures
373         FnKind::Closure(..) => false
374     }
375 }
376 ```
377
378 Now we should also run the full test suite with `cargo test`. At this point
379 running `cargo test` should produce the expected output. Remember to run
380 `cargo dev bless` to update the `.stderr` file.
381
382 `cargo test` (as opposed to `cargo uitest`) will also ensure that our lint
383 implementation is not violating any Clippy lints itself.
384
385 That should be it for the lint implementation. Running `cargo test` should now
386 pass.
387
388 [fn_kind]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast/visit/enum.FnKind.html
389 [`FnKind::Fn`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast/visit/enum.FnKind.html#variant.Fn
390 [ident]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_span/symbol/struct.Ident.html
391
392 ## Specifying the lint's minimum supported Rust version (MSRV)
393
394 Sometimes a lint makes suggestions that require a certain version of Rust. For example, the `manual_strip` lint suggests
395 using `str::strip_prefix` and `str::strip_suffix` which is only available after Rust 1.45. In such cases, you need to
396 ensure that the MSRV configured for the project is >= the MSRV of the required Rust feature. If multiple features are
397 required, just use the one with a lower MSRV.
398
399 First, add an MSRV alias for the required feature in [`clippy_utils::msrvs`](/clippy_utils/src/msrvs.rs). This can be
400 accessed later as `msrvs::STR_STRIP_PREFIX`, for example.
401
402 ```rust
403 msrv_aliases! {
404     ..
405     1,45,0 { STR_STRIP_PREFIX }
406 }
407 ```
408
409 In order to access the project-configured MSRV, you need to have an `msrv` field in the LintPass struct, and a
410 constructor to initialize the field. The `msrv` value is passed to the constructor in `clippy_lints/lib.rs`.
411
412 ```rust
413 pub struct ManualStrip {
414     msrv: Option<RustcVersion>,
415 }
416
417 impl ManualStrip {
418     #[must_use]
419     pub fn new(msrv: Option<RustcVersion>) -> Self {
420         Self { msrv }
421     }
422 }
423 ```
424
425 The project's MSRV can then be matched against the feature MSRV in the LintPass
426 using the `meets_msrv` utility function.
427
428 ``` rust
429 if !meets_msrv(self.msrv.as_ref(), &msrvs::STR_STRIP_PREFIX) {
430     return;
431 }
432 ```
433
434 The project's MSRV can also be specified as an inner attribute, which overrides
435 the value from `clippy.toml`. This can be accounted for using the
436 `extract_msrv_attr!(LintContext)` macro and passing
437 `LateContext`/`EarlyContext`.
438
439 ```rust
440 impl<'tcx> LateLintPass<'tcx> for ManualStrip {
441     fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
442         ...
443     }
444     extract_msrv_attr!(LateContext);
445 }
446 ```
447
448 Once the `msrv` is added to the lint, a relevant test case should be added to
449 `tests/ui/min_rust_version_attr.rs` which verifies that the lint isn't emitted
450 if the project's MSRV is lower.
451
452 As a last step, the lint should be added to the lint documentation. This is done
453 in `clippy_lints/src/utils/conf.rs`:
454
455 ```rust
456 define_Conf! {
457     /// Lint: LIST, OF, LINTS, <THE_NEWLY_ADDED_LINT>. The minimum rust version that the project supports
458     (msrv: Option<String> = None),
459     ...
460 }
461 ```
462
463 ## Author lint
464
465 If you have trouble implementing your lint, there is also the internal `author`
466 lint to generate Clippy code that detects the offending pattern. It does not
467 work for all of the Rust syntax, but can give a good starting point.
468
469 The quickest way to use it, is the
470 [Rust playground: play.rust-lang.org][author_example].
471 Put the code you want to lint into the editor and add the `#[clippy::author]`
472 attribute above the item. Then run Clippy via `Tools -> Clippy` and you should
473 see the generated code in the output below.
474
475 [Here][author_example] is an example on the playground.
476
477 If the command was executed successfully, you can copy the code over to where
478 you are implementing your lint.
479
480 [author_example]: https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=9a12cb60e5c6ad4e3003ac6d5e63cf55
481
482 ## Documentation
483
484 The final thing before submitting our PR is to add some documentation to our
485 lint declaration.
486
487 Please document your lint with a doc comment akin to the following:
488
489 ```rust
490 declare_clippy_lint! {
491     /// ### What it does
492     /// Checks for ... (describe what the lint matches).
493     ///
494     /// ### Why is this bad?
495     /// Supply the reason for linting the code.
496     ///
497     /// ### Example
498     ///
499     /// ```rust,ignore
500     /// // Bad
501     /// Insert a short example of code that triggers the lint
502     ///
503     /// // Good
504     /// Insert a short example of improved code that doesn't trigger the lint
505     /// ```
506     pub FOO_FUNCTIONS,
507     pedantic,
508     "function named `foo`, which is not a descriptive name"
509 }
510 ```
511
512 Once your lint is merged, this documentation will show up in the [lint
513 list][lint_list].
514
515 [lint_list]: https://rust-lang.github.io/rust-clippy/master/index.html
516
517 ## Running rustfmt
518
519 [Rustfmt] is a tool for formatting Rust code according to style guidelines.
520 Your code has to be formatted by `rustfmt` before a PR can be merged.
521 Clippy uses nightly `rustfmt` in the CI.
522
523 It can be installed via `rustup`:
524
525 ```bash
526 rustup component add rustfmt --toolchain=nightly
527 ```
528
529 Use `cargo dev fmt` to format the whole codebase. Make sure that `rustfmt` is
530 installed for the nightly toolchain.
531
532 [Rustfmt]: https://github.com/rust-lang/rustfmt
533
534 ## Debugging
535
536 If you want to debug parts of your lint implementation, you can use the [`dbg!`]
537 macro anywhere in your code. Running the tests should then include the debug
538 output in the `stdout` part.
539
540 [`dbg!`]: https://doc.rust-lang.org/std/macro.dbg.html
541
542 ## PR Checklist
543
544 Before submitting your PR make sure you followed all of the basic requirements:
545
546 <!-- Sync this with `.github/PULL_REQUEST_TEMPLATE` -->
547
548 - \[ ] Followed [lint naming conventions][lint_naming]
549 - \[ ] Added passing UI tests (including committed `.stderr` file)
550 - \[ ] `cargo test` passes locally
551 - \[ ] Executed `cargo dev update_lints`
552 - \[ ] Added lint documentation
553 - \[ ] Run `cargo dev fmt`
554
555 ## Adding configuration to a lint
556
557 Clippy supports the configuration of lints values using a `clippy.toml` file in the workspace
558 directory. Adding a configuration to a lint can be useful for thresholds or to constrain some
559 behavior that can be seen as a false positive for some users. Adding a configuration is done
560 in the following steps:
561
562 1. Adding a new configuration entry to [clippy_lints::utils::conf](/clippy_lints/src/utils/conf.rs)
563     like this:
564     ```rust
565     /// Lint: LINT_NAME.
566     ///
567     /// <The configuration field doc comment>
568     (configuration_ident: Type = DefaultValue),
569     ```
570     The doc comment is automatically added to the documentation of the listed lints. The default
571     value will be formatted using the `Debug` implementation of the type.
572 2. Adding the configuration value to the lint impl struct:
573     1. This first requires the definition of a lint impl struct. Lint impl structs are usually
574         generated with the `declare_lint_pass!` macro. This struct needs to be defined manually
575         to add some kind of metadata to it:
576         ```rust
577         // Generated struct definition
578         declare_lint_pass!(StructName => [
579             LINT_NAME
580         ]);
581
582         // New manual definition struct
583         #[derive(Copy, Clone)]
584         pub struct StructName {}
585
586         impl_lint_pass!(StructName => [
587             LINT_NAME
588         ]);
589         ```
590
591     2. Next add the configuration value and a corresponding creation method like this:
592         ```rust
593         #[derive(Copy, Clone)]
594         pub struct StructName {
595             configuration_ident: Type,
596         }
597
598         // ...
599
600         impl StructName {
601             pub fn new(configuration_ident: Type) -> Self {
602                 Self {
603                     configuration_ident,
604                 }
605             }
606         }
607         ```
608 3. Passing the configuration value to the lint impl struct:
609
610     First find the struct construction in the [clippy_lints lib file](/clippy_lints/src/lib.rs).
611     The configuration value is now cloned or copied into a local value that is then passed to the
612     impl struct like this:
613     ```rust
614     // Default generated registration:
615     store.register_*_pass(|| box module::StructName);
616
617     // New registration with configuration value
618     let configuration_ident = conf.configuration_ident.clone();
619     store.register_*_pass(move || box module::StructName::new(configuration_ident));
620     ```
621
622     Congratulations the work is almost done. The configuration value can now be accessed
623     in the linting code via `self.configuration_ident`.
624
625 4. Adding tests:
626     1. The default configured value can be tested like any normal lint in [`tests/ui`](/tests/ui).
627     2. The configuration itself will be tested separately in [`tests/ui-toml`](/tests/ui-toml).
628         Simply add a new subfolder with a fitting name. This folder contains a `clippy.toml` file
629         with the configuration value and a rust file that should be linted by Clippy. The test can
630         otherwise be written as usual.
631
632 ## Cheatsheet
633
634 Here are some pointers to things you are likely going to need for every lint:
635
636 * [Clippy utils][utils] - Various helper functions. Maybe the function you need
637   is already in here ([`is_type_diagnostic_item`], [`implements_trait`], [`snippet`], etc)
638 * [Clippy diagnostics][diagnostics]
639 * [The `if_chain` macro][if_chain]
640 * [`from_expansion`][from_expansion] and [`in_external_macro`][in_external_macro]
641 * [`Span`][span]
642 * [`Applicability`][applicability]
643 * [Common tools for writing lints](common_tools_writing_lints.md) helps with common operations
644 * [The rustc-dev-guide][rustc-dev-guide] explains a lot of internal compiler concepts
645 * [The nightly rustc docs][nightly_docs] which has been linked to throughout
646   this guide
647
648 For `EarlyLintPass` lints:
649
650 * [`EarlyLintPass`][early_lint_pass]
651 * [`rustc_ast::ast`][ast]
652
653 For `LateLintPass` lints:
654
655 * [`LateLintPass`][late_lint_pass]
656 * [`Ty::TyKind`][ty]
657
658 While most of Clippy's lint utils are documented, most of rustc's internals lack
659 documentation currently. This is unfortunate, but in most cases you can probably
660 get away with copying things from existing similar lints. If you are stuck,
661 don't hesitate to ask on [Zulip] or in the issue/PR.
662
663 [utils]: https://doc.rust-lang.org/nightly/nightly-rustc/clippy_utils/index.html
664 [`is_type_diagnostic_item`]: https://doc.rust-lang.org/nightly/nightly-rustc/clippy_utils/ty/fn.is_type_diagnostic_item.html
665 [`implements_trait`]: https://doc.rust-lang.org/nightly/nightly-rustc/clippy_utils/ty/fn.implements_trait.html
666 [`snippet`]: https://doc.rust-lang.org/nightly/nightly-rustc/clippy_utils/source/fn.snippet.html
667 [if_chain]: https://docs.rs/if_chain/*/if_chain/
668 [from_expansion]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_span/struct.Span.html#method.from_expansion
669 [in_external_macro]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/lint/fn.in_external_macro.html
670 [span]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_span/struct.Span.html
671 [applicability]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_errors/enum.Applicability.html
672 [rustc-dev-guide]: https://rustc-dev-guide.rust-lang.org/
673 [nightly_docs]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/
674 [ast]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast/ast/index.html
675 [ty]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/sty/index.html
676 [Zulip]: https://rust-lang.zulipchat.com/#narrow/stream/clippy