summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_error_codes/src/error_codes/E0710.md
blob: b7037ea611ba2685659aa5bd0d045b81399c201c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
An unknown tool name was found in a scoped lint.

Erroneous code examples:

```compile_fail,E0710
#[allow(clipp::filter_map)] // error!`
fn main() {
    // business logic
}
```

```compile_fail,E0710
#[warn(clipp::filter_map)] // error!`
fn main() {
    // business logic
}
```

Please verify you didn't misspell the tool's name or that you didn't
forget to import it in you project:

```
#[allow(clippy::filter_map)] // ok!
fn main() {
    // business logic
}
```

```
#[warn(clippy::filter_map)] // ok!
fn main() {
    // business logic
}
```