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

Merge pull request #6505 from Its-Just-Nans/fix-clippy-errors

Fix clippy errors
This commit is contained in:
Sylvestre Ledru 2024-06-30 18:55:51 +02:00 committed by GitHub
commit 9c0f2f84ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
40 changed files with 1341 additions and 901 deletions

View file

@ -556,3 +556,12 @@ inherits = "release"
opt-level = "z"
panic = "abort"
strip = true
[lints.clippy]
multiple_crate_versions = { level = "allow", priority = 1 }
cargo_common_metadata = { level = "allow", priority = 1 }
uninlined_format_args = { level = "allow", priority = 1 }
missing_panics_doc = { level = "allow", priority = 1 }
all = "deny"
cargo = "warn"
pedantic = "deny"