From 02a265b197a20b0d0da5461163887b0eafbed39e Mon Sep 17 00:00:00 2001 From: Adam Cattermole Date: Thu, 14 Nov 2024 14:00:32 +0000 Subject: [PATCH] Enable clippy unwrap_used lint Signed-off-by: Adam Cattermole --- src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9f065b3c..75421e0a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,7 @@ +#![deny(clippy::all, clippy::unwrap_used)] mod configuration; mod data; -#[allow(renamed_and_removed_lints)] +#[allow(renamed_and_removed_lints, clippy::unwrap_used)] mod envoy; mod filter; mod glob;