From a3f86b1fa9ddb3a0e26a1a751a31e31eb62697d2 Mon Sep 17 00:00:00 2001 From: Will Lillis Date: Sat, 3 May 2025 02:15:58 -0400 Subject: [PATCH] fix(rust): ignore obfuscated_if_else lint (cherry picked from commit 91274f47e44eb014757e0f0d8122924864f8aca5) --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 910d5532..118e5249 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,6 +75,7 @@ too_many_lines = "allow" unnecessary_wraps = "allow" unused_self = "allow" used_underscore_items = "allow" +obfuscated_if_else = "allow" [profile.optimize] inherits = "release"