mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
Auto merge of #5371 - matthiaskrgr:rdm, r=phansch
readme: explain how to run only a single lint on a codebase changelog: none
This commit is contained in:
commit
d3e21fe690
1 changed files with 8 additions and 0 deletions
|
@ -90,6 +90,14 @@ Note that this is still experimental and only supported on the nightly channel:
|
||||||
cargo fix -Z unstable-options --clippy
|
cargo fix -Z unstable-options --clippy
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Running only a single lint
|
||||||
|
|
||||||
|
If you care only about the warnings of a single lint and want to ignore everything else, you
|
||||||
|
can first deny all the clippy lints and then explicitly enable the lint(s) you care about:
|
||||||
|
````
|
||||||
|
cargo clippy -- -Aclippy::all -Wclippy::useless_format
|
||||||
|
````
|
||||||
|
|
||||||
### Running Clippy from the command line without installing it
|
### Running Clippy from the command line without installing it
|
||||||
|
|
||||||
To have cargo compile your crate with Clippy without Clippy installation
|
To have cargo compile your crate with Clippy without Clippy installation
|
||||||
|
|
Loading…
Reference in a new issue