Skip to content

Commit cf6a14c

Browse files
Add ui test for unneeded_clippy_cfg_attr
1 parent f35d87f commit cf6a14c

File tree

2 files changed

+84
-0
lines changed

2 files changed

+84
-0
lines changed

tests/ui/unnecessary_clippy_cfg.rs

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
//@no-rustfix
2+
3+
#![warn(clippy::unnecessary_clippy_cfg)]
4+
#![cfg_attr(clippy, deny(clippy::non_minimal_cfg))]
5+
//~^ ERROR: no need to put clippy lints behind a `clippy` cfg
6+
#![cfg_attr(clippy, deny(dead_code, clippy::non_minimal_cfg))]
7+
//~^ ERROR: no need to put clippy lints behind a `clippy` cfg
8+
#![cfg_attr(clippy, deny(dead_code, clippy::non_minimal_cfg, clippy::maybe_misused_cfg))]
9+
//~^ ERROR: no need to put clippy lints behind a `clippy` cfg
10+
#![cfg_attr(clippy, deny(clippy::non_minimal_cfg, clippy::maybe_misused_cfg))]
11+
//~^ ERROR: no need to put clippy lints behind a `clippy` cfg
12+
13+
#[cfg_attr(clippy, deny(clippy::non_minimal_cfg))]
14+
//~^ ERROR: no need to put clippy lints behind a `clippy` cfg
15+
#[cfg_attr(clippy, deny(dead_code, clippy::non_minimal_cfg))]
16+
//~^ ERROR: no need to put clippy lints behind a `clippy` cfg
17+
#[cfg_attr(clippy, deny(dead_code, clippy::non_minimal_cfg, clippy::maybe_misused_cfg))]
18+
//~^ ERROR: no need to put clippy lints behind a `clippy` cfg
19+
#[cfg_attr(clippy, deny(clippy::non_minimal_cfg, clippy::maybe_misused_cfg))]
20+
//~^ ERROR: no need to put clippy lints behind a `clippy` cfg
21+
pub struct Bar;
22+
23+
fn main() {}
+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
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

Comments
 (0)