mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-13 14:12:31 +00:00
Clippy: Allow struct_excessive_bools
This commit is contained in:
parent
a6b56c620d
commit
3fd6799528
1 changed files with 1 additions and 0 deletions
|
@ -53,6 +53,7 @@ ignored_unit_patterns = "allow" # Not a fan of this lint, doesn't make any
|
||||||
needless_return = "allow" # Explicit returns are needed from time to time for clarity
|
needless_return = "allow" # Explicit returns are needed from time to time for clarity
|
||||||
redundant_guards = "allow" # Currently broken for some cases, might enable later
|
redundant_guards = "allow" # Currently broken for some cases, might enable later
|
||||||
into_iter_without_iter = "allow" # This is only going to fire on some internal types, doesn't matter much
|
into_iter_without_iter = "allow" # This is only going to fire on some internal types, doesn't matter much
|
||||||
|
struct_excessive_bools = "allow" # I have yet to find one case of this being useful
|
||||||
|
|
||||||
[workspace.lints.rustdoc]
|
[workspace.lints.rustdoc]
|
||||||
broken_intra_doc_links = "deny"
|
broken_intra_doc_links = "deny"
|
||||||
|
|
Loading…
Reference in a new issue