dev(clippy): allow uninlined_format_args

This commit is contained in:
Matthieu Bessat 2025-10-11 23:12:17 +02:00
parent 9e0f038847
commit 3d93beb5bd
3 changed files with 6 additions and 1 deletions

View file

@ -6,4 +6,3 @@ members = [
"lib/sandbox"
]

View file

@ -8,3 +8,6 @@ proc-macro2 = "1.0.92"
[lib]
proc-macro = true
[lints.clippy]
uninlined_format_args = "allow"

View file

@ -20,3 +20,6 @@ serde = "1.0.216"
serde_json = "1.0.134"
structmeta = "0.3.0"
syn = { version = "2.0.92", features = ["extra-traits", "full", "parsing"] }
[lints.clippy]
uninlined_format_args = "allow"