From: Philippe Antoine Date: Thu, 4 Jan 2024 08:51:33 +0000 (+0100) Subject: rust: allow clippy::items_after_test_module X-Git-Tag: suricata-8.0.0-beta1~1889 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=673d13d44555843883915eb691b58a195ad021e8;p=thirdparty%2Fsuricata.git rust: allow clippy::items_after_test_module As clippy began to complain about jsonbuilder.rs --- diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 84b82bde19..15e21c4057 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -27,6 +27,9 @@ #![allow(clippy::let_and_return)] #![allow(clippy::uninlined_format_args)] +// We find this is beyond what the linter should flag. +#![allow(clippy::items_after_test_module)] + // We find this makes sense at time. #![allow(clippy::module_inception)]