From 91274f47e44eb014757e0f0d8122924864f8aca5 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 --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index d3ce5e0a..882c47a6 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"