From 998ef87f96bfc6a789c05bdc983cbdbf87a145c7 Mon Sep 17 00:00:00 2001 From: Alex Yusiuk <55661041+RRRadicalEdward@users.noreply.github.com> Date: Wed, 27 Aug 2025 12:03:32 +0300 Subject: [PATCH] chore: add `float_cmp_const` clippy correctness lint (#943) --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index f240aaa4..d6fc4ebb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -100,6 +100,7 @@ cast_sign_loss = "warn" filetype_is_file = "warn" float_cmp = "warn" lossy_float_literal = "warn" +float_cmp_const = "warn" as_underscore = "warn" # TODO: unwrap_used = "warn" # Let’s either handle `None`, `Err` or use `expect` to give a reason. large_stack_frames = "warn"