chore: enable safe clippy pedantic lints

This commit is contained in:
Christian Visintin
2026-03-21 15:43:16 +01:00
parent f044e6ace2
commit e11af03fdd
17 changed files with 50 additions and 36 deletions

View File

@@ -123,9 +123,14 @@ unused_lifetimes = "warn"
[lints.clippy]
complexity = { level = "warn", priority = -1 }
correctness = { level = "warn", priority = -1 }
cloned_instead_of_copied = "warn"
implicit_clone = "warn"
manual_string_new = "warn"
perf = { level = "warn", priority = -1 }
redundant_closure_for_method_calls = "warn"
style = { level = "warn", priority = -1 }
suspicious = { level = "warn", priority = -1 }
unnested_or_patterns = "warn"
[profile.dev]
incremental = true