2021-01-30 17:06:34 +00:00
|
|
|
error: name `CWR` contains a capitalized acronym
|
|
|
|
--> $DIR/upper_case_acronyms.rs:9:5
|
|
|
|
|
|
|
|
|
LL | CWR,
|
|
|
|
| ^^^ help: consider making the acronym lowercase, except the initial letter: `Cwr`
|
2021-02-25 10:25:22 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::upper-case-acronyms` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::upper_case_acronyms)]`
|
2021-01-30 17:06:34 +00:00
|
|
|
|
|
|
|
error: name `ECE` contains a capitalized acronym
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/upper_case_acronyms.rs:12:5
|
2021-01-30 17:06:34 +00:00
|
|
|
|
|
|
|
|
LL | ECE,
|
|
|
|
| ^^^ help: consider making the acronym lowercase, except the initial letter: `Ece`
|
|
|
|
|
|
|
|
error: name `URG` contains a capitalized acronym
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/upper_case_acronyms.rs:14:5
|
2021-01-30 17:06:34 +00:00
|
|
|
|
|
|
|
|
LL | URG,
|
|
|
|
| ^^^ help: consider making the acronym lowercase, except the initial letter: `Urg`
|
|
|
|
|
|
|
|
error: name `ACK` contains a capitalized acronym
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/upper_case_acronyms.rs:16:5
|
2021-01-30 17:06:34 +00:00
|
|
|
|
|
|
|
|
LL | ACK,
|
|
|
|
| ^^^ help: consider making the acronym lowercase, except the initial letter (notice the capitalization): `Ack`
|
|
|
|
|
|
|
|
error: name `PSH` contains a capitalized acronym
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/upper_case_acronyms.rs:18:5
|
2021-01-30 17:06:34 +00:00
|
|
|
|
|
|
|
|
LL | PSH,
|
|
|
|
| ^^^ help: consider making the acronym lowercase, except the initial letter: `Psh`
|
|
|
|
|
|
|
|
error: name `RST` contains a capitalized acronym
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/upper_case_acronyms.rs:20:5
|
2021-01-30 17:06:34 +00:00
|
|
|
|
|
|
|
|
LL | RST,
|
|
|
|
| ^^^ help: consider making the acronym lowercase, except the initial letter: `Rst`
|
|
|
|
|
|
|
|
error: name `SYN` contains a capitalized acronym
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/upper_case_acronyms.rs:22:5
|
2021-01-30 17:06:34 +00:00
|
|
|
|
|
|
|
|
LL | SYN,
|
|
|
|
| ^^^ help: consider making the acronym lowercase, except the initial letter: `Syn`
|
|
|
|
|
|
|
|
error: name `FIN` contains a capitalized acronym
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/upper_case_acronyms.rs:24:5
|
2021-01-30 17:06:34 +00:00
|
|
|
|
|
|
|
|
LL | FIN,
|
|
|
|
| ^^^ help: consider making the acronym lowercase, except the initial letter: `Fin`
|
|
|
|
|
2021-04-08 15:50:13 +00:00
|
|
|
error: name `WASD` contains a capitalized acronym
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/upper_case_acronyms.rs:45:5
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
|
|
|
LL | WASD(u8),
|
|
|
|
| ^^^^ help: consider making the acronym lowercase, except the initial letter: `Wasd`
|
|
|
|
|
2022-10-06 07:44:38 +00:00
|
|
|
error: name `JSON` contains a capitalized acronym
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/upper_case_acronyms.rs:52:8
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
|
LL | struct JSON;
|
|
|
|
| ^^^^ help: consider making the acronym lowercase, except the initial letter: `Json`
|
|
|
|
|
|
|
|
error: name `YAML` contains a capitalized acronym
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/upper_case_acronyms.rs:56:6
|
2022-10-06 07:44:38 +00:00
|
|
|
|
|
|
|
|
LL | enum YAML {
|
|
|
|
| ^^^^ help: consider making the acronym lowercase, except the initial letter: `Yaml`
|
|
|
|
|
2023-12-01 17:21:58 +00:00
|
|
|
error: name `DISALLOW` contains a capitalized acronym
|
|
|
|
--> $DIR/upper_case_acronyms.rs:64:5
|
|
|
|
|
|
|
|
|
LL | DISALLOW,
|
|
|
|
| ^^^^^^^^ help: consider making the acronym lowercase, except the initial letter: `Disallow`
|
|
|
|
|
|
|
|
error: aborting due to 12 previous errors
|
2021-01-30 17:06:34 +00:00
|
|
|
|