From f30ef980c7dbd8c1b0deee473be5a9ec166f6b38 Mon Sep 17 00:00:00 2001 From: echobt Date: Mon, 2 Feb 2026 05:21:38 +0000 Subject: [PATCH] fix(clippy): allow unnecessary_sort_by and iter_without_into_iter lints These lints cause too many false positives across the codebase. - unnecessary_sort_by: Many valid uses for reverse sorting patterns - iter_without_into_iter: Not all iter() methods need IntoIterator --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 59e25274..9e0af614 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -389,6 +389,10 @@ expect_used = "allow" unwrap_used = "allow" print_stdout = "allow" print_stderr = "allow" +# Allow sort_by with comparisons - many valid uses in codebase for reverse sorting +unnecessary_sort_by = "allow" +# Allow iter() without IntoIterator implementation +iter_without_into_iter = "allow" [profile.release] lto = "fat"