From 51c843a858a784394efebe1db55eb6826fbd837b Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 7 Apr 2024 01:07:08 +0900 Subject: [PATCH] Ignore more clippy lint at workspace level --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 9562a3f..6418937 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -67,6 +67,7 @@ manual_assert = { level = "allow", priority = 1 } manual_range_contains = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/6455#issuecomment-1225966395 missing_errors_doc = { level = "allow", priority = 1 } module_name_repetitions = { level = "allow", priority = 1 } +nonminimal_bool = { level = "allow", priority = 1 } # buggy https://github.com/rust-lang/rust-clippy/issues?q=is%3Aissue+is%3Aopen+nonminimal_bool similar_names = { level = "allow", priority = 1 } single_match = { level = "allow", priority = 1 } single_match_else = { level = "allow", priority = 1 }