From 34e116501314e77152faf0deab75a5f709fab807 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sun, 21 Apr 2024 15:14:37 +0200 Subject: [PATCH] Allow unnecessary wraps and similar names lints --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9ec1fc0..5212373 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,8 +50,10 @@ cast_possible_wrap = { level = "allow", priority = 1 } cast_precision_loss = { level = "allow", priority = 1 } cast_sign_loss = { level = "allow", priority = 1 } -unreadable_literal = { level = "allow", priority = 1 } +similar_names = { level = "allow", priority = 1 } +unnecessary_wraps = { level = "allow", priority = 1 } unnested_or_patterns = { level = "allow", priority = 1 } +unreadable_literal = { level = "allow", priority = 1 } multiple_crate_versions = { level = "allow", priority = 1 } module_inception = { level = "allow", priority = 1 }