From 64902d7706076edb145a37188327bbbac7584b99 Mon Sep 17 00:00:00 2001 From: Martijn Gribnau Date: Fri, 29 Dec 2023 23:42:25 +0100 Subject: [PATCH] Allow lint clippy::items_after_test_module * Lint often conflicts with macro generated test cases --- src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index bc90e4bd..41aafc63 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,8 @@ #![allow( clippy::upper_case_acronyms, clippy::unnecessary_wraps, - clippy::uninlined_format_args + clippy::uninlined_format_args, + clippy::items_after_test_module )] extern crate core;