From c89e02936afbc7461dcf3a96635f19e521458cb3 Mon Sep 17 00:00:00 2001 From: Chris Macklin Date: Thu, 14 Mar 2024 17:45:29 -0700 Subject: [PATCH] Leave a few notes in the lint rules. --- .cargo/config | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.cargo/config b/.cargo/config index 00695487a..23702a96e 100644 --- a/.cargo/config +++ b/.cargo/config @@ -58,10 +58,11 @@ rustflags = [ "-Dclippy::needless_collect", "-Dclippy::or_fun_call", # --- lint allow --- + "-A", "clippy::comparison_chain", + # TODO: burn down these allow exceptions and then deny them "-A", "clippy::type_complexity", "-A", "clippy::too_many_arguments", "-A", "clippy::needless_range_loop", - "-A", "clippy::comparison_chain", ] [target.x86_64-unknown-linux-gnu]