From 5912d8ebdd0f0fdd8bb3fb7cb75fa3c9bca88d1c Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Mon, 2 Jan 2023 11:33:20 +0100 Subject: [PATCH] Remove needless_borrow from list of explicitly enabled lints MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … it is currently warn-by-default. --- .cargo/config.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index b1727099..45b19005 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -25,7 +25,6 @@ rustflags = [ # easily. Locally allowing it also doesn't seem to work. #"-Wclippy::mod_module_files", "-Wclippy::mut_mut", - "-Wclippy::needless_borrow", "-Aclippy::new_without_default", "-Wclippy::nonstandard_macro_braces", "-Wclippy::semicolon_if_nothing_returned",