From 36f8ada30597816bdee6d7dceb9bdefe851f1ae5 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Tue, 4 Oct 2022 08:29:28 -0600 Subject: [PATCH] rust: remove clippy lints that no longer warn --- rust/src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 25e3c8a4fc..c2556987c3 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -19,7 +19,6 @@ // Clippy lints we want to suppress due to style, or simply too noisy // and not a priority right now. -#![allow(clippy::assertions_on_constants)] #![allow(clippy::assign_op_pattern)] #![allow(clippy::char_lit_as_u8)] #![allow(clippy::len_without_is_empty)] @@ -31,16 +30,13 @@ #![allow(clippy::needless_return)] #![allow(clippy::redundant_field_names)] #![allow(clippy::too_many_arguments)] -#![allow(clippy::vec_init_then_push)] // Would be good to fix, but needs more investigation with respect to // using as a library. #![allow(clippy::crate_in_macro_def)] // To be fixed, but remove the noise for now. -#![allow(clippy::bool_assert_comparison)] #![allow(clippy::bool_comparison)] -#![allow(clippy::branches_sharing_code)] #![allow(clippy::collapsible_else_if)] #![allow(clippy::collapsible_if)] #![allow(clippy::derive_partial_eq_without_eq)]