chore: make it possible override clippy all (#1698)

* chore: make it possible override `clippy all`

* chore: fix clippy lints

* Update Cargo.toml
This commit is contained in:
Niklas Adolfsson
2024-07-29 17:43:33 +02:00
committed by GitHub
parent c3267ed488
commit 39d130ec69
4 changed files with 7 additions and 7 deletions
+2 -1
View File
@@ -57,7 +57,8 @@ unused_extern_crates = "deny"
[workspace.lints.clippy]
type_complexity = "allow"
all = "deny"
# Priority -1 means that it can overwritten by other lints, https://rust-lang.github.io/rust-clippy/master/index.html#/lint_groups_priority
all = { level = "deny", priority = -1 }
# https://github.com/rust-lang/rust-clippy/issues/12643
manual-unwrap-or-default = "allow"