1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 20:17:45 +00:00

Merge pull request #7748 from cakebaker/clippy_move_lints_from_ci_to_cargo_toml

Move clippy lints from CI to `Cargo.toml`
This commit is contained in:
Sylvestre Ledru 2025-04-13 18:51:53 +02:00 committed by GitHub
commit efb09204a2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 14 additions and 7 deletions

View file

@ -601,4 +601,11 @@ unused_qualifications = "warn"
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
#cargo = { level = "warn", priority = -1 }
cognitive_complexity = "warn"
default_trait_access = "warn"
implicit_clone = "warn"
manual_string_new = "warn"
match_bool = "warn"
range-plus-one = "warn"
redundant-clone = "warn"
ref_option = "warn"