From 2870bc364be338bba571eb6563f3b774c3bf390e Mon Sep 17 00:00:00 2001 From: Moudy Date: Thu, 14 May 2026 18:58:53 +0200 Subject: [PATCH] fix: allow non_ascii_literal and redundant_type_annotations clippy lints --- tools/cycle_bench/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/cycle_bench/src/main.rs b/tools/cycle_bench/src/main.rs index 3b0e53a2..32316b89 100644 --- a/tools/cycle_bench/src/main.rs +++ b/tools/cycle_bench/src/main.rs @@ -25,9 +25,11 @@ clippy::module_name_repetitions, clippy::needless_pass_by_value, clippy::no_effect_underscore_binding, + clippy::non_ascii_literal, clippy::print_literal, clippy::print_stderr, clippy::print_stdout, + clippy::redundant_type_annotations, clippy::ref_option, clippy::ref_patterns, clippy::similar_names,