cargo/workspace/lints: Shorten notation

Also sort lints by name.
This commit is contained in:
Lorenz Leutgeb 2026-04-15 00:55:45 +02:00
parent 547a753768
commit ae55d935bc
No known key found for this signature in database
1 changed files with 9 additions and 9 deletions

View File

@ -84,15 +84,15 @@ zeroize = "1.5.7"
git-ref-format-core = { version = "0.6.0", default-features = false } git-ref-format-core = { version = "0.6.0", default-features = false }
radicle-surf = "0.27.1" radicle-surf = "0.27.1"
[workspace.lints] [workspace.lints.clippy]
clippy.type_complexity = "allow" enum_variant_names = "allow"
clippy.enum_variant_names = "allow" fallible_impl_from = "deny"
clippy.indexing_slicing = "deny" fn_params_excessive_bools = "deny"
clippy.fallible_impl_from = "deny" indexing_slicing = "deny"
clippy.wildcard_enum_match_arm = "deny" must_use_candidate = "deny"
clippy.unneeded_field_pattern = "deny" type_complexity = "allow"
clippy.fn_params_excessive_bools = "deny" unneeded_field_pattern = "deny"
clippy.must_use_candidate = "deny" wildcard_enum_match_arm = "deny"
[profile.container] [profile.container]
inherits = "release" inherits = "release"