From 80bafa5d45e7a2aaae5af94e93765b51464cfe72 Mon Sep 17 00:00:00 2001 From: lucarlig Date: Mon, 26 Feb 2024 14:37:17 +0400 Subject: [PATCH] add cargo.toml lint section way of adding lints --- book/src/configuration.md | 9 +++++++++ 1 file changed, 9 insertions(+) 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