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