diff options
| -rw-r--r-- | book/src/configuration.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/book/src/configuration.md b/book/src/configuration.md index 05520346456..0dd4fa62467 100644 --- a/book/src/configuration.md +++ b/book/src/configuration.md @@ -79,6 +79,15 @@ interested in: cargo clippy -- -A clippy::all -W clippy::useless_format -W clippy::... ``` +The last way to allow/disallow lints is to use `Cargo.toml` using [the lints section](https://doc.rust-lang.org/nightly/cargo/reference/manifest.html#the-lints-section)): + +To deny `clippy::enum_glob_use` + +```toml +[lints.clippy] +enum_glob_use = "deny" +``` + ### Specifying the minimum supported Rust version Projects that intend to support old versions of Rust can disable lints pertaining to newer features by specifying the |
