mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
Merge pull request #3250 from rust-lang-nursery/levels-readme
Mention -A and -W in readme
This commit is contained in:
commit
88e880e00c
1 changed files with 2 additions and 0 deletions
|
@ -145,6 +145,8 @@ enable/disable Clippy lints until `tool_lints` are stable:
|
||||||
#![cfg_attr(feature = "cargo-clippy", allow(clippy_lint))]
|
#![cfg_attr(feature = "cargo-clippy", allow(clippy_lint))]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If you do not want to include your lint levels in your code, you can globally enable/disable lints by passing extra flags to clippy during the run: `cargo clippy -- -A lint_name` will run clippy with `lint_name` disabled and `cargo clippy -- -W lint_name` will run it with that enabled. On newer compilers you may need to use `clippy::lint_name` instead.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Licensed under [MPL](https://www.mozilla.org/MPL/2.0/).
|
Licensed under [MPL](https://www.mozilla.org/MPL/2.0/).
|
||||||
|
|
Loading…
Reference in a new issue