From 00ac5b2015b3ee7ce44b559f5adb98026d459051 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Tue, 18 Jun 2024 23:45:25 +0200 Subject: [PATCH] Add clippy lint `match_bool` --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 77cc2e7ba5d..241bb3a7487 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -183,6 +183,7 @@ manual_string_new = "warn" map_err_ignore = "warn" map_flatten = "warn" map_unwrap_or = "warn" +match_bool = "warn" match_on_vec_items = "warn" match_same_arms = "warn" match_wild_err_arm = "warn"