From a7b8d6317cd8c724342a5f1c84f8c26831cab0a9 Mon Sep 17 00:00:00 2001 From: Daniel McNab <36049421+DJMcNab@users.noreply.github.com> Date: Wed, 27 Nov 2024 15:55:12 +0000 Subject: [PATCH] Allow `needless_range_loop` Not sure why this was passing before? --- vello_shaders/src/lib.rs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/vello_shaders/src/lib.rs b/vello_shaders/src/lib.rs index db652da8..ae46c05a 100644 --- a/vello_shaders/src/lib.rs +++ b/vello_shaders/src/lib.rs @@ -39,17 +39,18 @@ )] #![allow( elided_lifetimes_in_paths, - clippy::print_stdout, - clippy::print_stderr, single_use_lifetimes, unnameable_types, - clippy::unseparated_literal_suffix, clippy::cast_possible_truncation, - clippy::shadow_unrelated, clippy::missing_assert_message, - clippy::missing_panics_doc, clippy::missing_errors_doc, + clippy::missing_panics_doc, + clippy::needless_range_loop, + clippy::print_stderr, + clippy::print_stdout, + clippy::shadow_unrelated, clippy::todo, + clippy::unseparated_literal_suffix, reason = "Deferred, only apply in some feature sets so not expect" )]