@@ -9,7 +9,7 @@ error: lint group `rust_2018_idioms` has the same priority (0) as a lint
99 |
1010 = note: the order of the lints in the table is ignored by Cargo
1111 = note: `#[deny(clippy::lint_groups_priority)]` on by default
12- help: to have lints override the group set `rust_2018_idioms` to a lower priority
12+ help: to have lints override the group, set `rust_2018_idioms` to a lower priority
1313 |
1414 7 - rust_2018_idioms = "warn"
1515 7 + rust_2018_idioms = { level = "warn", priority = -1 }
@@ -20,12 +20,12 @@ error: lint group `unused` has the same priority (0) as a lint
2020 |
212110 | unused = { level = "deny" }
2222 | ^^^^^^ ------------------ has an implicit priority of 0
23- 11 | unused_braces = { level = "allow", priority = 1 }
23+ 11 | unused_braces = { level = "allow", p...
242412 | unused_attributes = { level = "allow" }
2525 | ----------------- has the same priority as this lint
2626 |
2727 = note: the order of the lints in the table is ignored by Cargo
28- help: to have lints override the group set `unused` to a lower priority
28+ help: to have lints override the group, set `unused` to a lower priority
2929 |
303010 | unused = { level = "deny", priority = -1 }
3131 | +++++++++++++++
@@ -35,11 +35,11 @@ error: lint group `pedantic` has the same priority (-1) as a lint
3535 |
363615 | pedantic = { level = "warn", priority = -1 }
3737 | ^^^^^^^^
38- 16 | similar_names = { level = "allow", priority = -1 }
38+ 16 | similar_names = { level = "allow", priority =...
3939 | ------------- has the same priority as this lint
4040 |
4141 = note: the order of the lints in the table is ignored by Cargo
42- help: to have lints override the group set `pedantic` to a lower priority
42+ help: to have lints override the group, set `pedantic` to a lower priority
4343 |
444415 - pedantic = { level = "warn", priority = -1 }
454515 + pedantic = { level = "warn", priority = -2 }
@@ -54,7 +54,7 @@ error: lint group `rust_2018_idioms` has the same priority (0) as a lint
5454 | ------------------ has the same priority as this lint
5555 |
5656 = note: the order of the lints in the table is ignored by Cargo
57- help: to have lints override the group set `rust_2018_idioms` to a lower priority
57+ help: to have lints override the group, set `rust_2018_idioms` to a lower priority
5858 |
595919 - rust_2018_idioms = "warn"
606019 + rust_2018_idioms = { level = "warn", priority = -1 }
@@ -69,7 +69,7 @@ error: lint group `pedantic` has the same priority (0) as a lint
6969 | ------------- has the same priority as this lint
7070 |
7171 = note: the order of the lints in the table is ignored by Cargo
72- help: to have lints override the group set `pedantic` to a lower priority
72+ help: to have lints override the group, set `pedantic` to a lower priority
7373 |
747423 - pedantic = "warn"
757523 + pedantic = { level = "warn", priority = -1 }
0 commit comments