We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 513b467 + b0de238 commit d3e21feCopy full SHA for d3e21fe
README.md
@@ -90,6 +90,14 @@ Note that this is still experimental and only supported on the nightly channel:
90
cargo fix -Z unstable-options --clippy
91
```
92
93
+#### Running only a single lint
94
+
95
+If you care only about the warnings of a single lint and want to ignore everything else, you
96
+can first deny all the clippy lints and then explicitly enable the lint(s) you care about:
97
+````
98
+cargo clippy -- -Aclippy::all -Wclippy::useless_format
99
100
101
### Running Clippy from the command line without installing it
102
103
To have cargo compile your crate with Clippy without Clippy installation
0 commit comments