|
| 1 | +error: no need to put clippy lints behind a `clippy` cfg |
| 2 | + --> tests/ui/unnecessary_clippy_cfg.rs:13:1 |
| 3 | + | |
| 4 | +LL | #[cfg_attr(clippy, deny(clippy::non_minimal_cfg))] |
| 5 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `#[deny(clippy::non_minimal_cfg)]` |
| 6 | + | |
| 7 | + = note: `-D clippy::unnecessary-clippy-cfg` implied by `-D warnings` |
| 8 | + = help: to override `-D warnings` add `#[allow(clippy::unnecessary_clippy_cfg)]` |
| 9 | + |
| 10 | +error: no need to put clippy lints behind a `clippy` cfg |
| 11 | + --> tests/ui/unnecessary_clippy_cfg.rs:15:36 |
| 12 | + | |
| 13 | +LL | #[cfg_attr(clippy, deny(dead_code, clippy::non_minimal_cfg))] |
| 14 | + | ^^^^^^^^^^^^^^^^^^^^^^^ |
| 15 | + | |
| 16 | + = note: write instead: `#[deny(clippy::non_minimal_cfg)]` |
| 17 | + |
| 18 | +error: no need to put clippy lints behind a `clippy` cfg |
| 19 | + --> tests/ui/unnecessary_clippy_cfg.rs:17:36 |
| 20 | + | |
| 21 | +LL | #[cfg_attr(clippy, deny(dead_code, clippy::non_minimal_cfg, clippy::maybe_misused_cfg))] |
| 22 | + | ^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 23 | + | |
| 24 | + = note: write instead: `#[deny(clippy::non_minimal_cfg,clippy::maybe_misused_cfg)]` |
| 25 | + |
| 26 | +error: no need to put clippy lints behind a `clippy` cfg |
| 27 | + --> tests/ui/unnecessary_clippy_cfg.rs:19:1 |
| 28 | + | |
| 29 | +LL | #[cfg_attr(clippy, deny(clippy::non_minimal_cfg, clippy::maybe_misused_cfg))] |
| 30 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `#[deny(clippy::non_minimal_cfg, clippy::maybe_misused_cfg)]` |
| 31 | + |
| 32 | +error: no need to put clippy lints behind a `clippy` cfg |
| 33 | + --> tests/ui/unnecessary_clippy_cfg.rs:4:1 |
| 34 | + | |
| 35 | +LL | #![cfg_attr(clippy, deny(clippy::non_minimal_cfg))] |
| 36 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `#![deny(clippy::non_minimal_cfg)]` |
| 37 | + |
| 38 | +error: no need to put clippy lints behind a `clippy` cfg |
| 39 | + --> tests/ui/unnecessary_clippy_cfg.rs:6:37 |
| 40 | + | |
| 41 | +LL | #![cfg_attr(clippy, deny(dead_code, clippy::non_minimal_cfg))] |
| 42 | + | ^^^^^^^^^^^^^^^^^^^^^^^ |
| 43 | + | |
| 44 | + = note: write instead: `#![deny(clippy::non_minimal_cfg)]` |
| 45 | + |
| 46 | +error: no need to put clippy lints behind a `clippy` cfg |
| 47 | + --> tests/ui/unnecessary_clippy_cfg.rs:8:37 |
| 48 | + | |
| 49 | +LL | #![cfg_attr(clippy, deny(dead_code, clippy::non_minimal_cfg, clippy::maybe_misused_cfg))] |
| 50 | + | ^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 51 | + | |
| 52 | + = note: write instead: `#![deny(clippy::non_minimal_cfg,clippy::maybe_misused_cfg)]` |
| 53 | + |
| 54 | +error: no need to put clippy lints behind a `clippy` cfg |
| 55 | + --> tests/ui/unnecessary_clippy_cfg.rs:10:1 |
| 56 | + | |
| 57 | +LL | #![cfg_attr(clippy, deny(clippy::non_minimal_cfg, clippy::maybe_misused_cfg))] |
| 58 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `#![deny(clippy::non_minimal_cfg, clippy::maybe_misused_cfg)]` |
| 59 | + |
| 60 | +error: aborting due to 8 previous errors |
| 61 | + |
0 commit comments