2020-03-10 20:21:28 +00:00
|
|
|
# Adding a new lint
|
2019-02-26 19:55:17 +00:00
|
|
|
|
|
|
|
You are probably here because you want to add a new lint to Clippy. If this is
|
|
|
|
the first time you're contributing to Clippy, this document guides you through
|
|
|
|
creating an example lint from scratch.
|
|
|
|
|
|
|
|
To get started, we will create a lint that detects functions called `foo`,
|
|
|
|
because that's clearly a non-descriptive name.
|
|
|
|
|
2019-09-11 19:53:12 +00:00
|
|
|
- [Adding a new lint](#adding-a-new-lint)
|
|
|
|
- [Setup](#setup)
|
2020-01-11 19:26:25 +00:00
|
|
|
- [Getting Started](#getting-started)
|
2019-09-11 19:53:12 +00:00
|
|
|
- [Testing](#testing)
|
2021-07-29 10:16:06 +00:00
|
|
|
- [Cargo lints](#cargo-lints)
|
2019-09-11 19:53:12 +00:00
|
|
|
- [Rustfix tests](#rustfix-tests)
|
|
|
|
- [Edition 2018 tests](#edition-2018-tests)
|
|
|
|
- [Testing manually](#testing-manually)
|
|
|
|
- [Lint declaration](#lint-declaration)
|
2021-11-04 12:52:36 +00:00
|
|
|
- [Lint registration](#lint-registration)
|
2019-09-11 19:53:12 +00:00
|
|
|
- [Lint passes](#lint-passes)
|
|
|
|
- [Emitting a lint](#emitting-a-lint)
|
|
|
|
- [Adding the lint logic](#adding-the-lint-logic)
|
2021-04-08 15:50:13 +00:00
|
|
|
- [Specifying the lint's minimum supported Rust version (MSRV)](#specifying-the-lints-minimum-supported-rust-version-msrv)
|
2019-09-11 19:53:12 +00:00
|
|
|
- [Author lint](#author-lint)
|
|
|
|
- [Documentation](#documentation)
|
|
|
|
- [Running rustfmt](#running-rustfmt)
|
|
|
|
- [Debugging](#debugging)
|
|
|
|
- [PR Checklist](#pr-checklist)
|
2021-01-30 17:06:34 +00:00
|
|
|
- [Adding configuration to a lint](#adding-configuration-to-a-lint)
|
2019-09-11 19:53:12 +00:00
|
|
|
- [Cheatsheet](#cheatsheet)
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Setup
|
2019-03-01 06:30:58 +00:00
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
See the [Basics](basics.md#get-the-code) documentation.
|
2019-03-01 06:30:58 +00:00
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Getting Started
|
2020-01-11 19:26:25 +00:00
|
|
|
|
|
|
|
There is a bit of boilerplate code that needs to be set up when creating a new
|
|
|
|
lint. Fortunately, you can use the clippy dev tools to handle this for you. We
|
|
|
|
are naming our new lint `foo_functions` (lints are generally written in snake
|
|
|
|
case), and we don't need type information so it will have an early pass type
|
2020-08-11 13:43:21 +00:00
|
|
|
(more on this later on). If you're not sure if the name you chose fits the lint,
|
|
|
|
take a look at our [lint naming guidelines][lint_naming]. To get started on this
|
|
|
|
lint you can run `cargo dev new_lint --name=foo_functions --pass=early
|
|
|
|
--category=pedantic` (category will default to nursery if not provided). This
|
|
|
|
command will create two files: `tests/ui/foo_functions.rs` and
|
2021-11-04 12:52:36 +00:00
|
|
|
`clippy_lints/src/foo_functions.rs`, as well as
|
|
|
|
[registering the lint](#lint-registration). For cargo lints, two project
|
|
|
|
hierarchies (fail/pass) will be created by default under `tests/ui-cargo`.
|
2020-05-28 13:45:24 +00:00
|
|
|
|
|
|
|
Next, we'll open up these files and add our lint!
|
2020-01-11 19:26:25 +00:00
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Testing
|
2019-02-26 19:55:17 +00:00
|
|
|
|
|
|
|
Let's write some tests first that we can execute while we iterate on our lint.
|
|
|
|
|
|
|
|
Clippy uses UI tests for testing. UI tests check that the output of Clippy is
|
|
|
|
exactly as expected. Each test is just a plain Rust file that contains the code
|
|
|
|
we want to check. The output of Clippy is compared against a `.stderr` file.
|
2019-03-02 15:29:11 +00:00
|
|
|
Note that you don't have to create this file yourself, we'll get to
|
|
|
|
generating the `.stderr` files further down.
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2020-01-20 01:55:23 +00:00
|
|
|
We start by opening the test file created at `tests/ui/foo_functions.rs`.
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2020-01-11 19:26:25 +00:00
|
|
|
Update the file with some examples to get started:
|
2019-02-26 19:55:17 +00:00
|
|
|
|
|
|
|
```rust
|
|
|
|
#![warn(clippy::foo_functions)]
|
|
|
|
|
|
|
|
// Impl methods
|
|
|
|
struct A;
|
|
|
|
impl A {
|
|
|
|
pub fn fo(&self) {}
|
|
|
|
pub fn foo(&self) {}
|
|
|
|
pub fn food(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Default trait methods
|
|
|
|
trait B {
|
2019-06-01 12:51:49 +00:00
|
|
|
fn fo(&self) {}
|
|
|
|
fn foo(&self) {}
|
|
|
|
fn food(&self) {}
|
2019-02-26 19:55:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Plain functions
|
|
|
|
fn fo() {}
|
|
|
|
fn foo() {}
|
|
|
|
fn food() {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// We also don't want to lint method calls
|
|
|
|
foo();
|
|
|
|
let a = A;
|
|
|
|
a.foo();
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
Now we can run the test with `TESTNAME=foo_functions cargo uitest`,
|
|
|
|
currently this test is meaningless though.
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2019-03-04 19:39:28 +00:00
|
|
|
While we are working on implementing our lint, we can keep running the UI
|
|
|
|
test. That allows us to check if the output is turning into what we want.
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2019-03-04 19:39:28 +00:00
|
|
|
Once we are satisfied with the output, we need to run
|
2020-12-20 16:19:49 +00:00
|
|
|
`cargo dev bless` to update the `.stderr` file for our lint.
|
2019-09-05 22:54:49 +00:00
|
|
|
Please note that, we should run `TESTNAME=foo_functions cargo uitest`
|
2020-12-20 16:19:49 +00:00
|
|
|
every time before running `cargo dev bless`.
|
2020-01-20 01:55:23 +00:00
|
|
|
Running `TESTNAME=foo_functions cargo uitest` should pass then. When we commit
|
2020-04-20 19:08:44 +00:00
|
|
|
our lint, we need to commit the generated `.stderr` files, too. In general, you
|
2020-12-20 16:19:49 +00:00
|
|
|
should only commit files changed by `cargo dev bless` for the
|
2020-10-23 20:16:59 +00:00
|
|
|
specific lint you are creating/editing. Note that if the generated files are
|
|
|
|
empty, they should be removed.
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2021-02-25 10:25:22 +00:00
|
|
|
Note that you can run multiple test files by specifying a comma separated list:
|
|
|
|
`TESTNAME=foo_functions,test2,test3`.
|
|
|
|
|
2020-05-28 13:45:24 +00:00
|
|
|
### Cargo lints
|
|
|
|
|
|
|
|
For cargo lints, the process of testing differs in that we are interested in
|
|
|
|
the `Cargo.toml` manifest file. We also need a minimal crate associated
|
|
|
|
with that manifest.
|
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
If our new lint is named e.g. `foo_categories`, after running `cargo dev new_lint`
|
2020-05-28 13:45:24 +00:00
|
|
|
we will find by default two new crates, each with its manifest file:
|
|
|
|
|
|
|
|
* `tests/ui-cargo/foo_categories/fail/Cargo.toml`: this file should cause the new lint to raise an error.
|
|
|
|
* `tests/ui-cargo/foo_categories/pass/Cargo.toml`: this file should not trigger the lint.
|
|
|
|
|
|
|
|
If you need more cases, you can copy one of those crates (under `foo_categories`) and rename it.
|
|
|
|
|
|
|
|
The process of generating the `.stderr` file is the same, and prepending the `TESTNAME`
|
2020-12-20 16:19:49 +00:00
|
|
|
variable to `cargo uitest` works too.
|
2020-05-28 13:45:24 +00:00
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Rustfix tests
|
2019-03-01 06:30:58 +00:00
|
|
|
|
|
|
|
If the lint you are working on is making use of structured suggestions, the
|
|
|
|
test file should include a `// run-rustfix` comment at the top. This will
|
2020-03-10 20:55:25 +00:00
|
|
|
additionally run [rustfix] for that test. Rustfix will apply the suggestions
|
|
|
|
from the lint to the code of the test file and compare that to the contents of
|
|
|
|
a `.fixed` file.
|
2019-03-01 06:30:58 +00:00
|
|
|
|
2020-12-20 16:19:49 +00:00
|
|
|
Use `cargo dev bless` to automatically generate the
|
2019-03-03 08:50:56 +00:00
|
|
|
`.fixed` file after running the tests.
|
2019-03-01 06:30:58 +00:00
|
|
|
|
2020-03-10 20:55:25 +00:00
|
|
|
[rustfix]: https://github.com/rust-lang/rustfix
|
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Edition 2018 tests
|
2019-08-09 17:14:59 +00:00
|
|
|
|
|
|
|
Some features require the 2018 edition to work (e.g. `async_await`), but
|
|
|
|
compile-test tests run on the 2015 edition by default. To change this behavior
|
2020-03-10 20:21:28 +00:00
|
|
|
add `// edition:2018` at the top of the test file (note that it's space-sensitive).
|
2019-08-09 17:14:59 +00:00
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Testing manually
|
2019-03-01 06:30:58 +00:00
|
|
|
|
2019-03-03 08:50:56 +00:00
|
|
|
Manually testing against an example file can be useful if you have added some
|
|
|
|
`println!`s and the test suite output becomes unreadable. To try Clippy with
|
2021-01-15 09:56:44 +00:00
|
|
|
your local modifications, run
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2021-01-15 09:56:44 +00:00
|
|
|
```
|
2021-12-06 11:33:31 +00:00
|
|
|
cargo dev lint input.rs
|
2021-01-15 09:56:44 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
from the working copy root. With tests in place, let's have a look at
|
|
|
|
implementing our lint now.
|
2019-10-17 16:33:42 +00:00
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Lint declaration
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2020-01-20 01:55:23 +00:00
|
|
|
Let's start by opening the new file created in the `clippy_lints` crate
|
2020-01-11 19:26:25 +00:00
|
|
|
at `clippy_lints/src/foo_functions.rs`. That's the crate where all the
|
|
|
|
lint code is. This file has already imported some initial things we will need:
|
2019-02-26 19:55:17 +00:00
|
|
|
|
|
|
|
```rust
|
2020-02-11 03:37:25 +00:00
|
|
|
use rustc_lint::{EarlyLintPass, EarlyContext};
|
2020-01-11 11:37:08 +00:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-03-10 20:21:28 +00:00
|
|
|
use rustc_ast::ast::*;
|
2019-02-26 19:55:17 +00:00
|
|
|
```
|
|
|
|
|
2020-01-11 19:26:25 +00:00
|
|
|
The next step is to update the lint declaration. Lints are declared using the
|
|
|
|
[`declare_clippy_lint!`][declare_clippy_lint] macro, and we just need to update
|
|
|
|
the auto-generated lint declaration to have a real description, something like this:
|
2019-02-26 19:55:17 +00:00
|
|
|
|
|
|
|
```rust
|
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
2020-01-11 19:26:25 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
2020-01-11 19:26:25 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2020-01-11 19:26:25 +00:00
|
|
|
/// ```rust
|
|
|
|
/// // example code
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "1.29.0"]
|
2019-02-26 19:55:17 +00:00
|
|
|
pub FOO_FUNCTIONS,
|
|
|
|
pedantic,
|
|
|
|
"function named `foo`, which is not a descriptive name"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-01-11 19:26:25 +00:00
|
|
|
* The section of lines prefixed with `///` constitutes the lint documentation
|
2020-03-10 20:21:28 +00:00
|
|
|
section. This is the default documentation style and will be displayed
|
2020-10-09 10:45:29 +00:00
|
|
|
[like this][example_lint_page]. To render and open this documentation locally
|
|
|
|
in a browser, run `cargo dev serve`.
|
2021-12-06 11:33:31 +00:00
|
|
|
* The `#[clippy::version]` attribute will be rendered as part of the lint documentation.
|
|
|
|
The value should be set to the current Rust version that the lint is developed in,
|
|
|
|
it can be retrieved by running `rustc -vV` in the rust-clippy directory. The version
|
|
|
|
is listed under *release*. (Use the version without the `-nightly`) suffix.
|
2020-03-10 20:55:25 +00:00
|
|
|
* `FOO_FUNCTIONS` is the name of our lint. Be sure to follow the
|
|
|
|
[lint naming guidelines][lint_naming] here when naming your lint.
|
|
|
|
In short, the name should state the thing that is being checked for and
|
|
|
|
read well when used with `allow`/`warn`/`deny`.
|
2019-02-26 19:55:17 +00:00
|
|
|
* `pedantic` sets the lint level to `Allow`.
|
|
|
|
The exact mapping can be found [here][category_level_mapping]
|
|
|
|
* The last part should be a text that explains what exactly is wrong with the
|
|
|
|
code
|
|
|
|
|
2020-01-20 01:55:23 +00:00
|
|
|
The rest of this file contains an empty implementation for our lint pass,
|
2020-01-11 19:26:25 +00:00
|
|
|
which in this case is `EarlyLintPass` and should look like this:
|
2019-02-26 19:55:17 +00:00
|
|
|
|
|
|
|
```rust
|
|
|
|
// clippy_lints/src/foo_functions.rs
|
|
|
|
|
|
|
|
// .. imports and lint declaration ..
|
|
|
|
|
2019-04-08 06:40:59 +00:00
|
|
|
declare_lint_pass!(FooFunctions => [FOO_FUNCTIONS]);
|
2019-03-19 00:39:19 +00:00
|
|
|
|
2019-04-08 06:40:59 +00:00
|
|
|
impl EarlyLintPass for FooFunctions {}
|
2019-02-26 19:55:17 +00:00
|
|
|
```
|
|
|
|
|
2021-11-04 12:52:36 +00:00
|
|
|
[declare_clippy_lint]: https://github.com/rust-lang/rust-clippy/blob/557f6848bd5b7183f55c1e1522a326e9e1df6030/clippy_lints/src/lib.rs#L60
|
|
|
|
[example_lint_page]: https://rust-lang.github.io/rust-clippy/master/index.html#redundant_closure
|
|
|
|
[lint_naming]: https://rust-lang.github.io/rfcs/0344-conventions-galore.html#lints
|
|
|
|
[category_level_mapping]: https://github.com/rust-lang/rust-clippy/blob/557f6848bd5b7183f55c1e1522a326e9e1df6030/clippy_lints/src/lib.rs#L110
|
|
|
|
|
|
|
|
## Lint registration
|
|
|
|
|
|
|
|
When using `cargo dev new_lint`, the lint is automatically registered and
|
|
|
|
nothing more has to be done.
|
|
|
|
|
|
|
|
When declaring a new lint by hand and `cargo dev update_lints` is used, the lint
|
|
|
|
pass may have to be registered manually in the `register_plugins` function in
|
|
|
|
`clippy_lints/src/lib.rs`:
|
2019-02-26 19:55:17 +00:00
|
|
|
|
|
|
|
```rust
|
2021-11-04 12:52:36 +00:00
|
|
|
store.register_early_pass(|| Box::new(foo_functions::FooFunctions));
|
2019-02-26 19:55:17 +00:00
|
|
|
```
|
|
|
|
|
2020-10-23 20:16:59 +00:00
|
|
|
As one may expect, there is a corresponding `register_late_pass` method
|
2020-12-20 16:19:49 +00:00
|
|
|
available as well. Without a call to one of `register_early_pass` or
|
2020-10-23 20:16:59 +00:00
|
|
|
`register_late_pass`, the lint pass in question will not be run.
|
|
|
|
|
2021-11-04 12:52:36 +00:00
|
|
|
One reason that `cargo dev update_lints` does not automate this step is that
|
|
|
|
multiple lints can use the same lint pass, so registering the lint pass may
|
|
|
|
already be done when adding a new lint. Another reason that this step is not
|
|
|
|
automated is that the order that the passes are registered determines the order
|
|
|
|
the passes actually run, which in turn affects the order that any emitted lints
|
|
|
|
are output in.
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Lint passes
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2019-03-02 15:25:05 +00:00
|
|
|
Writing a lint that only checks for the name of a function means that we only
|
2019-02-26 19:55:17 +00:00
|
|
|
have to deal with the AST and don't have to deal with the type system at all.
|
|
|
|
This is good, because it makes writing this particular lint less complicated.
|
|
|
|
|
2019-02-27 21:34:16 +00:00
|
|
|
We have to make this decision with every new Clippy lint. It boils down to using
|
|
|
|
either [`EarlyLintPass`][early_lint_pass] or [`LateLintPass`][late_lint_pass].
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2019-02-27 21:34:16 +00:00
|
|
|
In short, the `LateLintPass` has access to type information while the
|
|
|
|
`EarlyLintPass` doesn't. If you don't need access to type information, use the
|
|
|
|
`EarlyLintPass`. The `EarlyLintPass` is also faster. However linting speed
|
|
|
|
hasn't really been a concern with Clippy so far.
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2020-01-11 19:26:25 +00:00
|
|
|
Since we don't need type information for checking the function name, we used
|
|
|
|
`--pass=early` when running the new lint automation and all the imports were
|
|
|
|
added accordingly.
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2020-03-10 20:55:25 +00:00
|
|
|
[early_lint_pass]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lint/trait.EarlyLintPass.html
|
|
|
|
[late_lint_pass]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lint/trait.LateLintPass.html
|
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Emitting a lint
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2019-03-02 15:25:05 +00:00
|
|
|
With UI tests and the lint declaration in place, we can start working on the
|
2019-03-03 08:50:56 +00:00
|
|
|
implementation of the lint logic.
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2019-04-08 06:40:59 +00:00
|
|
|
Let's start by implementing the `EarlyLintPass` for our `FooFunctions`:
|
2019-02-26 19:55:17 +00:00
|
|
|
|
|
|
|
```rust
|
2019-04-08 06:40:59 +00:00
|
|
|
impl EarlyLintPass for FooFunctions {
|
2020-03-10 20:21:28 +00:00
|
|
|
fn check_fn(&mut self, cx: &EarlyContext<'_>, fn_kind: FnKind<'_>, span: Span, _: NodeId) {
|
2019-02-26 19:55:17 +00:00
|
|
|
// TODO: Emit lint here
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-02-27 21:34:16 +00:00
|
|
|
We implement the [`check_fn`][check_fn] method from the
|
|
|
|
[`EarlyLintPass`][early_lint_pass] trait. This gives us access to various
|
|
|
|
information about the function that is currently being checked. More on that in
|
|
|
|
the next section. Let's worry about the details later and emit our lint for
|
|
|
|
*every* function definition first.
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2019-02-27 21:34:16 +00:00
|
|
|
Depending on how complex we want our lint message to be, we can choose from a
|
2019-03-03 08:50:56 +00:00
|
|
|
variety of lint emission functions. They can all be found in
|
2021-02-25 10:25:22 +00:00
|
|
|
[`clippy_utils/src/diagnostics.rs`][diagnostics].
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2020-01-27 01:56:22 +00:00
|
|
|
`span_lint_and_help` seems most appropriate in this case. It allows us to
|
2019-03-03 08:50:56 +00:00
|
|
|
provide an extra help message and we can't really suggest a better name
|
|
|
|
automatically. This is how it looks:
|
2019-02-26 19:55:17 +00:00
|
|
|
|
|
|
|
```rust
|
2019-04-08 06:40:59 +00:00
|
|
|
impl EarlyLintPass for FooFunctions {
|
2020-03-10 20:21:28 +00:00
|
|
|
fn check_fn(&mut self, cx: &EarlyContext<'_>, fn_kind: FnKind<'_>, span: Span, _: NodeId) {
|
2020-01-27 01:56:22 +00:00
|
|
|
span_lint_and_help(
|
2019-02-26 19:55:17 +00:00
|
|
|
cx,
|
|
|
|
FOO_FUNCTIONS,
|
|
|
|
span,
|
|
|
|
"function named `foo`",
|
2020-04-18 10:28:29 +00:00
|
|
|
None,
|
2019-02-26 19:55:17 +00:00
|
|
|
"consider using a more meaningful name"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-03-03 08:50:56 +00:00
|
|
|
Running our UI test should now produce output that contains the lint message.
|
|
|
|
|
2020-08-28 14:10:16 +00:00
|
|
|
According to [the rustc-dev-guide], the text should be matter of fact and avoid
|
|
|
|
capitalization and periods, unless multiple sentences are needed.
|
|
|
|
When code or an identifier must appear in a message or label, it should be
|
2020-11-05 13:29:48 +00:00
|
|
|
surrounded with single grave accents \`.
|
2020-08-28 14:10:16 +00:00
|
|
|
|
2020-03-10 20:55:25 +00:00
|
|
|
[check_fn]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_lint/trait.EarlyLintPass.html#method.check_fn
|
2021-02-25 10:25:22 +00:00
|
|
|
[diagnostics]: https://github.com/rust-lang/rust-clippy/blob/master/clippy_utils/src/diagnostics.rs
|
2020-08-28 14:10:16 +00:00
|
|
|
[the rustc-dev-guide]: https://rustc-dev-guide.rust-lang.org/diagnostics.html
|
2020-03-10 20:55:25 +00:00
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Adding the lint logic
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2019-03-04 19:39:28 +00:00
|
|
|
Writing the logic for your lint will most likely be different from our example,
|
2019-02-26 19:55:17 +00:00
|
|
|
so this section is kept rather short.
|
|
|
|
|
|
|
|
Using the [`check_fn`][check_fn] method gives us access to [`FnKind`][fn_kind]
|
2020-03-10 20:55:25 +00:00
|
|
|
that has the [`FnKind::Fn`] variant. It provides access to the name of the
|
2020-03-10 20:21:28 +00:00
|
|
|
function/method via an [`Ident`][ident].
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2019-02-27 21:34:16 +00:00
|
|
|
With that we can expand our `check_fn` method to:
|
|
|
|
|
|
|
|
```rust
|
2019-04-08 06:40:59 +00:00
|
|
|
impl EarlyLintPass for FooFunctions {
|
2020-03-10 20:21:28 +00:00
|
|
|
fn check_fn(&mut self, cx: &EarlyContext<'_>, fn_kind: FnKind<'_>, span: Span, _: NodeId) {
|
2019-02-28 06:00:22 +00:00
|
|
|
if is_foo_fn(fn_kind) {
|
2020-01-27 01:56:22 +00:00
|
|
|
span_lint_and_help(
|
2019-02-28 06:00:22 +00:00
|
|
|
cx,
|
|
|
|
FOO_FUNCTIONS,
|
|
|
|
span,
|
|
|
|
"function named `foo`",
|
2020-04-18 10:28:29 +00:00
|
|
|
None,
|
2019-02-28 06:00:22 +00:00
|
|
|
"consider using a more meaningful name"
|
|
|
|
);
|
|
|
|
}
|
2019-02-27 21:34:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
We separate the lint conditional from the lint emissions because it makes the
|
|
|
|
code a bit easier to read. In some cases this separation would also allow to
|
2019-03-02 15:25:05 +00:00
|
|
|
write some unit tests (as opposed to only UI tests) for the separate function.
|
2019-02-27 21:34:16 +00:00
|
|
|
|
|
|
|
In our example, `is_foo_fn` looks like:
|
2019-02-26 19:55:17 +00:00
|
|
|
|
|
|
|
```rust
|
2019-02-27 21:34:16 +00:00
|
|
|
// use statements, impl EarlyLintPass, check_fn, ..
|
|
|
|
|
2019-02-26 19:55:17 +00:00
|
|
|
fn is_foo_fn(fn_kind: FnKind<'_>) -> bool {
|
|
|
|
match fn_kind {
|
2020-03-10 20:21:28 +00:00
|
|
|
FnKind::Fn(_, ident, ..) => {
|
|
|
|
// check if `fn` name is `foo`
|
|
|
|
ident.name.as_str() == "foo"
|
|
|
|
}
|
|
|
|
// ignore closures
|
2019-02-27 21:15:19 +00:00
|
|
|
FnKind::Closure(..) => false
|
2019-02-26 19:55:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2019-03-04 19:39:28 +00:00
|
|
|
Now we should also run the full test suite with `cargo test`. At this point
|
2019-02-28 06:06:10 +00:00
|
|
|
running `cargo test` should produce the expected output. Remember to run
|
2020-12-20 16:19:49 +00:00
|
|
|
`cargo dev bless` to update the `.stderr` file.
|
2019-02-28 06:06:10 +00:00
|
|
|
|
|
|
|
`cargo test` (as opposed to `cargo uitest`) will also ensure that our lint
|
|
|
|
implementation is not violating any Clippy lints itself.
|
2019-02-27 21:34:16 +00:00
|
|
|
|
|
|
|
That should be it for the lint implementation. Running `cargo test` should now
|
2019-03-01 06:30:58 +00:00
|
|
|
pass.
|
|
|
|
|
2020-03-10 20:55:25 +00:00
|
|
|
[fn_kind]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast/visit/enum.FnKind.html
|
|
|
|
[`FnKind::Fn`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast/visit/enum.FnKind.html#variant.Fn
|
|
|
|
[ident]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_span/symbol/struct.Ident.html
|
|
|
|
|
2021-04-08 15:50:13 +00:00
|
|
|
## Specifying the lint's minimum supported Rust version (MSRV)
|
2020-12-20 16:19:49 +00:00
|
|
|
|
2021-04-27 14:55:11 +00:00
|
|
|
Sometimes a lint makes suggestions that require a certain version of Rust. For example, the `manual_strip` lint suggests
|
|
|
|
using `str::strip_prefix` and `str::strip_suffix` which is only available after Rust 1.45. In such cases, you need to
|
|
|
|
ensure that the MSRV configured for the project is >= the MSRV of the required Rust feature. If multiple features are
|
|
|
|
required, just use the one with a lower MSRV.
|
|
|
|
|
|
|
|
First, add an MSRV alias for the required feature in [`clippy_utils::msrvs`](/clippy_utils/src/msrvs.rs). This can be
|
|
|
|
accessed later as `msrvs::STR_STRIP_PREFIX`, for example.
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
```rust
|
2021-04-27 14:55:11 +00:00
|
|
|
msrv_aliases! {
|
|
|
|
..
|
|
|
|
1,45,0 { STR_STRIP_PREFIX }
|
|
|
|
}
|
2020-12-20 16:19:49 +00:00
|
|
|
```
|
|
|
|
|
2021-04-27 14:55:11 +00:00
|
|
|
In order to access the project-configured MSRV, you need to have an `msrv` field in the LintPass struct, and a
|
|
|
|
constructor to initialize the field. The `msrv` value is passed to the constructor in `clippy_lints/lib.rs`.
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
```rust
|
|
|
|
pub struct ManualStrip {
|
|
|
|
msrv: Option<RustcVersion>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ManualStrip {
|
|
|
|
#[must_use]
|
|
|
|
pub fn new(msrv: Option<RustcVersion>) -> Self {
|
|
|
|
Self { msrv }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-04-27 14:55:11 +00:00
|
|
|
The project's MSRV can then be matched against the feature MSRV in the LintPass
|
2021-04-08 15:50:13 +00:00
|
|
|
using the `meets_msrv` utility function.
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
``` rust
|
2021-04-27 14:55:11 +00:00
|
|
|
if !meets_msrv(self.msrv.as_ref(), &msrvs::STR_STRIP_PREFIX) {
|
2020-12-20 16:19:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-04-08 15:50:13 +00:00
|
|
|
The project's MSRV can also be specified as an inner attribute, which overrides
|
|
|
|
the value from `clippy.toml`. This can be accounted for using the
|
|
|
|
`extract_msrv_attr!(LintContext)` macro and passing
|
|
|
|
`LateContext`/`EarlyContext`.
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
```rust
|
|
|
|
impl<'tcx> LateLintPass<'tcx> for ManualStrip {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
|
|
|
...
|
|
|
|
}
|
|
|
|
extract_msrv_attr!(LateContext);
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-04-08 15:50:13 +00:00
|
|
|
Once the `msrv` is added to the lint, a relevant test case should be added to
|
|
|
|
`tests/ui/min_rust_version_attr.rs` which verifies that the lint isn't emitted
|
|
|
|
if the project's MSRV is lower.
|
|
|
|
|
|
|
|
As a last step, the lint should be added to the lint documentation. This is done
|
|
|
|
in `clippy_lints/src/utils/conf.rs`:
|
|
|
|
|
|
|
|
```rust
|
|
|
|
define_Conf! {
|
|
|
|
/// Lint: LIST, OF, LINTS, <THE_NEWLY_ADDED_LINT>. The minimum rust version that the project supports
|
2021-05-06 09:51:22 +00:00
|
|
|
(msrv: Option<String> = None),
|
2021-04-08 15:50:13 +00:00
|
|
|
...
|
|
|
|
}
|
|
|
|
```
|
2020-12-20 16:19:49 +00:00
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Author lint
|
2019-03-01 06:30:58 +00:00
|
|
|
|
|
|
|
If you have trouble implementing your lint, there is also the internal `author`
|
|
|
|
lint to generate Clippy code that detects the offending pattern. It does not
|
|
|
|
work for all of the Rust syntax, but can give a good starting point.
|
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
The quickest way to use it, is the
|
|
|
|
[Rust playground: play.rust-lang.org][author_example].
|
2019-03-02 15:25:05 +00:00
|
|
|
Put the code you want to lint into the editor and add the `#[clippy::author]`
|
|
|
|
attribute above the item. Then run Clippy via `Tools -> Clippy` and you should
|
|
|
|
see the generated code in the output below.
|
2019-03-01 06:30:58 +00:00
|
|
|
|
2019-03-02 15:25:05 +00:00
|
|
|
[Here][author_example] is an example on the playground.
|
2019-03-01 06:30:58 +00:00
|
|
|
|
|
|
|
If the command was executed successfully, you can copy the code over to where
|
|
|
|
you are implementing your lint.
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2020-03-10 20:55:25 +00:00
|
|
|
[author_example]: https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=9a12cb60e5c6ad4e3003ac6d5e63cf55
|
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Documentation
|
2019-02-26 19:55:17 +00:00
|
|
|
|
|
|
|
The final thing before submitting our PR is to add some documentation to our
|
|
|
|
lint declaration.
|
|
|
|
|
|
|
|
Please document your lint with a doc comment akin to the following:
|
|
|
|
|
|
|
|
```rust
|
2019-03-08 07:50:13 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for ... (describe what the lint matches).
|
2019-03-08 07:50:13 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Supply the reason for linting the code.
|
2019-03-08 07:50:13 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2019-03-08 07:50:13 +00:00
|
|
|
///
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// // Bad
|
|
|
|
/// Insert a short example of code that triggers the lint
|
|
|
|
///
|
|
|
|
/// // Good
|
|
|
|
/// Insert a short example of improved code that doesn't trigger the lint
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "1.29.0"]
|
2019-03-08 07:50:13 +00:00
|
|
|
pub FOO_FUNCTIONS,
|
|
|
|
pedantic,
|
|
|
|
"function named `foo`, which is not a descriptive name"
|
|
|
|
}
|
2019-02-26 19:55:17 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Once your lint is merged, this documentation will show up in the [lint
|
|
|
|
list][lint_list].
|
|
|
|
|
2020-03-10 20:55:25 +00:00
|
|
|
[lint_list]: https://rust-lang.github.io/rust-clippy/master/index.html
|
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Running rustfmt
|
2019-03-01 06:30:58 +00:00
|
|
|
|
2020-03-10 20:55:25 +00:00
|
|
|
[Rustfmt] is a tool for formatting Rust code according to style guidelines.
|
|
|
|
Your code has to be formatted by `rustfmt` before a PR can be merged.
|
|
|
|
Clippy uses nightly `rustfmt` in the CI.
|
2019-03-01 06:30:58 +00:00
|
|
|
|
|
|
|
It can be installed via `rustup`:
|
|
|
|
|
|
|
|
```bash
|
2019-07-04 12:35:27 +00:00
|
|
|
rustup component add rustfmt --toolchain=nightly
|
2019-03-01 06:30:58 +00:00
|
|
|
```
|
|
|
|
|
2020-01-30 07:33:48 +00:00
|
|
|
Use `cargo dev fmt` to format the whole codebase. Make sure that `rustfmt` is
|
2019-07-04 12:35:27 +00:00
|
|
|
installed for the nightly toolchain.
|
2019-03-01 06:30:58 +00:00
|
|
|
|
2020-03-10 20:55:25 +00:00
|
|
|
[Rustfmt]: https://github.com/rust-lang/rustfmt
|
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Debugging
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
If you want to debug parts of your lint implementation, you can use the [`dbg!`]
|
2019-02-26 19:55:17 +00:00
|
|
|
macro anywhere in your code. Running the tests should then include the debug
|
|
|
|
output in the `stdout` part.
|
|
|
|
|
2020-03-10 20:55:25 +00:00
|
|
|
[`dbg!`]: https://doc.rust-lang.org/std/macro.dbg.html
|
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## PR Checklist
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2019-03-01 06:30:58 +00:00
|
|
|
Before submitting your PR make sure you followed all of the basic requirements:
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2019-08-08 14:37:19 +00:00
|
|
|
<!-- Sync this with `.github/PULL_REQUEST_TEMPLATE` -->
|
|
|
|
|
2020-10-23 20:16:59 +00:00
|
|
|
- \[ ] Followed [lint naming conventions][lint_naming]
|
|
|
|
- \[ ] Added passing UI tests (including committed `.stderr` file)
|
|
|
|
- \[ ] `cargo test` passes locally
|
|
|
|
- \[ ] Executed `cargo dev update_lints`
|
|
|
|
- \[ ] Added lint documentation
|
|
|
|
- \[ ] Run `cargo dev fmt`
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2021-01-30 17:06:34 +00:00
|
|
|
## Adding configuration to a lint
|
|
|
|
|
2021-04-08 15:50:13 +00:00
|
|
|
Clippy supports the configuration of lints values using a `clippy.toml` file in the workspace
|
2021-01-30 17:06:34 +00:00
|
|
|
directory. Adding a configuration to a lint can be useful for thresholds or to constrain some
|
2021-04-08 15:50:13 +00:00
|
|
|
behavior that can be seen as a false positive for some users. Adding a configuration is done
|
2021-01-30 17:06:34 +00:00
|
|
|
in the following steps:
|
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
1. Adding a new configuration entry to [clippy_lints::utils::conf](/clippy_lints/src/utils/conf.rs)
|
2021-01-30 17:06:34 +00:00
|
|
|
like this:
|
|
|
|
```rust
|
2021-09-08 14:31:47 +00:00
|
|
|
/// Lint: LINT_NAME.
|
|
|
|
///
|
|
|
|
/// <The configuration field doc comment>
|
2021-05-06 09:51:22 +00:00
|
|
|
(configuration_ident: Type = DefaultValue),
|
2021-01-30 17:06:34 +00:00
|
|
|
```
|
2021-11-04 12:52:36 +00:00
|
|
|
The doc comment is automatically added to the documentation of the listed lints. The default
|
|
|
|
value will be formatted using the `Debug` implementation of the type.
|
2021-01-30 17:06:34 +00:00
|
|
|
2. Adding the configuration value to the lint impl struct:
|
2021-04-08 15:50:13 +00:00
|
|
|
1. This first requires the definition of a lint impl struct. Lint impl structs are usually
|
2021-01-30 17:06:34 +00:00
|
|
|
generated with the `declare_lint_pass!` macro. This struct needs to be defined manually
|
|
|
|
to add some kind of metadata to it:
|
|
|
|
```rust
|
|
|
|
// Generated struct definition
|
|
|
|
declare_lint_pass!(StructName => [
|
|
|
|
LINT_NAME
|
|
|
|
]);
|
|
|
|
|
|
|
|
// New manual definition struct
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct StructName {}
|
|
|
|
|
|
|
|
impl_lint_pass!(StructName => [
|
|
|
|
LINT_NAME
|
|
|
|
]);
|
|
|
|
```
|
2021-04-08 15:50:13 +00:00
|
|
|
|
2021-01-30 17:06:34 +00:00
|
|
|
2. Next add the configuration value and a corresponding creation method like this:
|
|
|
|
```rust
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct StructName {
|
|
|
|
configuration_ident: Type,
|
|
|
|
}
|
|
|
|
|
|
|
|
// ...
|
|
|
|
|
|
|
|
impl StructName {
|
|
|
|
pub fn new(configuration_ident: Type) -> Self {
|
|
|
|
Self {
|
|
|
|
configuration_ident,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
3. Passing the configuration value to the lint impl struct:
|
|
|
|
|
2021-04-08 15:50:13 +00:00
|
|
|
First find the struct construction in the [clippy_lints lib file](/clippy_lints/src/lib.rs).
|
2021-02-03 04:43:30 +00:00
|
|
|
The configuration value is now cloned or copied into a local value that is then passed to the
|
|
|
|
impl struct like this:
|
2021-01-30 17:06:34 +00:00
|
|
|
```rust
|
|
|
|
// Default generated registration:
|
2021-02-03 04:43:30 +00:00
|
|
|
store.register_*_pass(|| box module::StructName);
|
2021-01-30 17:06:34 +00:00
|
|
|
|
|
|
|
// New registration with configuration value
|
|
|
|
let configuration_ident = conf.configuration_ident.clone();
|
2021-02-03 04:43:30 +00:00
|
|
|
store.register_*_pass(move || box module::StructName::new(configuration_ident));
|
2021-01-30 17:06:34 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Congratulations the work is almost done. The configuration value can now be accessed
|
|
|
|
in the linting code via `self.configuration_ident`.
|
|
|
|
|
|
|
|
4. Adding tests:
|
|
|
|
1. The default configured value can be tested like any normal lint in [`tests/ui`](/tests/ui).
|
2021-04-08 15:50:13 +00:00
|
|
|
2. The configuration itself will be tested separately in [`tests/ui-toml`](/tests/ui-toml).
|
|
|
|
Simply add a new subfolder with a fitting name. This folder contains a `clippy.toml` file
|
|
|
|
with the configuration value and a rust file that should be linted by Clippy. The test can
|
2021-01-30 17:06:34 +00:00
|
|
|
otherwise be written as usual.
|
|
|
|
|
2020-03-10 20:21:28 +00:00
|
|
|
## Cheatsheet
|
2019-02-26 19:55:17 +00:00
|
|
|
|
|
|
|
Here are some pointers to things you are likely going to need for every lint:
|
|
|
|
|
2019-02-28 06:10:59 +00:00
|
|
|
* [Clippy utils][utils] - Various helper functions. Maybe the function you need
|
2021-12-06 11:33:31 +00:00
|
|
|
is already in here ([`is_type_diagnostic_item`], [`implements_trait`], [`snippet`], etc)
|
2019-02-28 06:10:59 +00:00
|
|
|
* [Clippy diagnostics][diagnostics]
|
2019-02-26 19:55:17 +00:00
|
|
|
* [The `if_chain` macro][if_chain]
|
2019-08-19 16:30:32 +00:00
|
|
|
* [`from_expansion`][from_expansion] and [`in_external_macro`][in_external_macro]
|
2019-02-26 19:55:17 +00:00
|
|
|
* [`Span`][span]
|
|
|
|
* [`Applicability`][applicability]
|
2020-05-28 13:45:24 +00:00
|
|
|
* [Common tools for writing lints](common_tools_writing_lints.md) helps with common operations
|
2020-03-06 04:32:04 +00:00
|
|
|
* [The rustc-dev-guide][rustc-dev-guide] explains a lot of internal compiler concepts
|
2019-03-04 19:43:11 +00:00
|
|
|
* [The nightly rustc docs][nightly_docs] which has been linked to throughout
|
|
|
|
this guide
|
2019-02-26 19:55:17 +00:00
|
|
|
|
|
|
|
For `EarlyLintPass` lints:
|
|
|
|
|
|
|
|
* [`EarlyLintPass`][early_lint_pass]
|
2020-03-10 20:21:28 +00:00
|
|
|
* [`rustc_ast::ast`][ast]
|
2019-02-26 19:55:17 +00:00
|
|
|
|
|
|
|
For `LateLintPass` lints:
|
|
|
|
|
|
|
|
* [`LateLintPass`][late_lint_pass]
|
|
|
|
* [`Ty::TyKind`][ty]
|
|
|
|
|
|
|
|
While most of Clippy's lint utils are documented, most of rustc's internals lack
|
|
|
|
documentation currently. This is unfortunate, but in most cases you can probably
|
|
|
|
get away with copying things from existing similar lints. If you are stuck,
|
2020-09-24 12:49:22 +00:00
|
|
|
don't hesitate to ask on [Zulip] or in the issue/PR.
|
2019-02-26 19:55:17 +00:00
|
|
|
|
2021-12-06 11:33:31 +00:00
|
|
|
[utils]: https://doc.rust-lang.org/nightly/nightly-rustc/clippy_utils/index.html
|
|
|
|
[`is_type_diagnostic_item`]: https://doc.rust-lang.org/nightly/nightly-rustc/clippy_utils/ty/fn.is_type_diagnostic_item.html
|
|
|
|
[`implements_trait`]: https://doc.rust-lang.org/nightly/nightly-rustc/clippy_utils/ty/fn.implements_trait.html
|
|
|
|
[`snippet`]: https://doc.rust-lang.org/nightly/nightly-rustc/clippy_utils/source/fn.snippet.html
|
2019-08-20 02:59:13 +00:00
|
|
|
[if_chain]: https://docs.rs/if_chain/*/if_chain/
|
2019-12-31 00:17:56 +00:00
|
|
|
[from_expansion]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_span/struct.Span.html#method.from_expansion
|
2020-04-04 15:01:42 +00:00
|
|
|
[in_external_macro]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/lint/fn.in_external_macro.html
|
2020-03-10 20:55:25 +00:00
|
|
|
[span]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_span/struct.Span.html
|
|
|
|
[applicability]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_errors/enum.Applicability.html
|
2020-03-09 21:58:39 +00:00
|
|
|
[rustc-dev-guide]: https://rustc-dev-guide.rust-lang.org/
|
2020-04-04 15:01:42 +00:00
|
|
|
[nightly_docs]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/
|
2020-03-10 20:55:25 +00:00
|
|
|
[ast]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast/ast/index.html
|
2020-04-04 15:01:42 +00:00
|
|
|
[ty]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/sty/index.html
|
2020-09-24 12:49:22 +00:00
|
|
|
[Zulip]: https://rust-lang.zulipchat.com/#narrow/stream/clippy
|