From eff4af46fa5c7cc1fb19e7e2ec7a33a49363a9e1 Mon Sep 17 00:00:00 2001 From: Philippe Antoine Date: Thu, 4 Jan 2024 09:51:33 +0100 Subject: [PATCH] rust: allow clippy::items_after_test_module As clippy began to complain about jsonbuilder.rs (cherry picked from commit 673d13d44555843883915eb691b58a195ad021e8) --- rust/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) 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)] -- 2.47.2