summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/src/docs/disallowed_names.txt
blob: f4aaee9c77b7baed6014435108a093d22b4cb55f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
### What it does
Checks for usage of disallowed names for variables, such
as `foo`.

### Why is this bad?
These names are usually placeholder names and should be
avoided.

### Example
```
let foo = 3.14;
```