File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ There are two things to note here:
41
41
is an ` early ` lint pass. We will discuss this difference in a later chapter.
42
42
<!-- FIXME: Link that "later chapter" when lint_passes.md is merged -->
43
43
2 . If not provided, the ` category ` of this new lint will default to ` nursery ` .
44
- See Clippy's [ lint types] ( ../lints.md ) for more information on categories.
45
44
46
45
The ` cargo dev new_lint ` command will create a new file: ` clippy_lints/src/foo_functions.rs `
47
46
as well as [ register the lint] ( #lint-registration ) .
@@ -67,6 +66,8 @@ Untracked files:
67
66
68
67
### Specific Type
69
68
69
+ > ** Note** : Lint types are listed in the [ "Lint types"] ( #lint-types ) section
70
+
70
71
If you believe that this new lint belongs to a specific type of lints,
71
72
you can run ` cargo dev new_lint ` with a ` --type ` option.
72
73
@@ -135,7 +136,7 @@ the lint pass in question will not be run.
135
136
136
137
## Lint types
137
138
138
- As of the writing of this documentation update, there are 12 categories (a.k.a. _ types_ )
139
+ As of the writing of this documentation update, there are 12 groups (a.k.a. _ types_ )
139
140
of lints besides the numerous standalone lints living under ` clippy_lints/src/ ` :
140
141
141
142
- ` cargo `
You can’t perform that action at this time.
0 commit comments