Skip to content

Commit

Permalink
Ignore mixed_attributes_style clippy lint
Browse files Browse the repository at this point in the history
    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
  • Loading branch information
dtolnay committed Mar 8, 2024
1 parent f770921 commit f55a5d2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_lints.rs
@@ -1,3 +1,5 @@
#![allow(clippy::mixed_attributes_style)]

use thiserror::Error;

pub use std::error::Error;
Expand Down

0 comments on commit f55a5d2

Please sign in to comment.