Skip to content

Commit 4520529

Browse files
committed
Remind users of separate rustc lint groups
1 parent 5305979 commit 4520529

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ define the `CLIPPY_DISABLE_DOCS_LINKS` environment variable.
162162

163163
You can add options to your code to `allow`/`warn`/`deny` Clippy lints:
164164

165-
* the whole set of `Warn` lints using the `clippy` lint group (`#![deny(clippy::all)]`)
165+
* the whole set of `Warn` lints using the `clippy` lint group (`#![deny(clippy::all)]`).
166+
Note that `rustc` has additional [lint groups](https://doc.rust-lang.org/rustc/lints/groups.html).
166167

167168
* all lints using both the `clippy` and `clippy::pedantic` lint groups (`#![deny(clippy::all)]`,
168169
`#![deny(clippy::pedantic)]`). Note that `clippy::pedantic` contains some very aggressive

0 commit comments

Comments
 (0)