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-7.0.3~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eff4af46fa5c7cc1fb19e7e2ec7a33a49363a9e1;p=thirdparty%2Fsuricata.git rust: allow clippy::items_after_test_module As clippy began to complain about jsonbuilder.rs (cherry picked from commit 673d13d44555843883915eb691b58a195ad021e8) --- diff --git a/rust/src/lib.rs b/rust/src/lib.rs index da28596377..cf8fd90dde 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)]