Skip to content

Commit dfd75b2

Browse files
committed
Disable buggy clippy::lint_groups_priority lint
``` error: lint group `rust_2018_idioms` has the same priority (0) as a lint --> Cargo.toml:64:1 | 64 | rust_2018_idioms = "warn" | ^^^^^^^^^^^^^^^^ ------ has an implicit priority of 0 65 | single_use_lifetimes = "warn" | -------------------- has the same priority as this lint | = note: the order of the lints in the table is ignored by Cargo = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#lint_groups_priority = note: `#[deny(clippy::lint_groups_priority)]` on by default help: to have lints override the group set `rust_2018_idioms` to a lower priority | 64 | rust_2018_idioms = { level = "warn", priority = -1 } | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ```
1 parent ac6c56f commit dfd75b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ unexpected_cfgs = { level = "warn", check-cfg = [
7171
'cfg(crossbeam_loom)',
7272
'cfg(crossbeam_sanitize)',
7373
] }
74-
7574
[workspace.lints.clippy]
7675
# Suppress buggy or noisy clippy lints
7776
declare_interior_mutable_const = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/7665
77+
lint_groups_priority = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/12920

0 commit comments

Comments
 (0)