summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/src/docs/blanket_clippy_restriction_lints.txt
blob: 28a4ebf7169bfa744c691d707c06f0cbce55bfaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
### What it does
Checks for `warn`/`deny`/`forbid` attributes targeting the whole clippy::restriction category.

### Why is this bad?
Restriction lints sometimes are in contrast with other lints or even go against idiomatic rust.
These lints should only be enabled on a lint-by-lint basis and with careful consideration.

### Example
```
#![deny(clippy::restriction)]
```

Use instead:
```
#![deny(clippy::as_conversions)]
```