chore(qa): format code and configure clippy lints

This commit is contained in:
2026-09-19 10:04:53 +02:00
parent 45572b7370
commit 28a4bb6b70
16 changed files with 157 additions and 109 deletions
+14
View File
@@ -55,3 +55,17 @@ codegen-units = 1
panic = "unwind"
strip = true
overflow-checks = true
[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"
field_reassign_with_default = "allow"
upper_case_acronyms = "allow"
collapsible_if = "allow"
manual_dangling_ptr = "allow"
needless_borrow = "allow"
manual_strip = "allow"
redundant_pattern_matching = "allow"
needless_range_loop = "allow"
manual_range_contains = "allow"