From f55a5d28da7114b44e967451f697d8d0fedb20be Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 7 Mar 2024 22:31:38 -0800 Subject: [PATCH] Ignore mixed_attributes_style clippy lint warning: item has both inner and outer attributes --> tests/test_lints.rs:5:1 | 5 | / #[test] 6 | | fn test_unused_qualifications() { 7 | | #![deny(unused_qualifications)] | |___________________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#mixed_attributes_style = note: `#[warn(clippy::mixed_attributes_style)]` on by default --- tests/test_lints.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_lints.rs b/tests/test_lints.rs index 59699a4..cafcbc0 100644 --- a/tests/test_lints.rs +++ b/tests/test_lints.rs @@ -1,3 +1,5 @@ +#![allow(clippy::mixed_attributes_style)] + use thiserror::Error; pub use std::error::Error;