From d7d27cd74c3eaf4ef4aec01546c9697c590801f7 Mon Sep 17 00:00:00 2001 From: Scott Schafer Date: Wed, 15 Feb 2023 12:14:22 -0600 Subject: [PATCH] chore: Warn on `clippy::self_named_module_files` --- src/cargo/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cargo/lib.rs b/src/cargo/lib.rs index 435d582a378..9f14e5381bd 100644 --- a/src/cargo/lib.rs +++ b/src/cargo/lib.rs @@ -4,6 +4,7 @@ // Due to some of the default clippy lints being somewhat subjective and not // necessarily an improvement, we prefer to not use them at this time. #![allow(clippy::all)] +#![warn(clippy::self_named_module_files)] #![allow(rustdoc::private_intra_doc_links)] //! # Cargo as a library