mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-28 07:30:57 +00:00
6619e8c27d
Warns when a lint group in Cargo.toml's `[lints]` section shares the same priority as a lint
10 lines
229 B
TOML
10 lines
229 B
TOML
[package]
|
|
name = "pass"
|
|
version = "0.1.0"
|
|
publish = false
|
|
|
|
[lints.clippy]
|
|
pedantic = { level = "warn", priority = -1 }
|
|
style = { level = "warn", priority = 1 }
|
|
similar_names = "allow"
|
|
dbg_macro = { level = "warn", priority = 2 }
|