Clippy: Allow struct_excessive_bools

This commit is contained in:
Serial 2024-06-30 21:28:13 -04:00 committed by Alex
parent a6b56c620d
commit 3fd6799528

View file

@ -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
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
struct_excessive_bools = "allow" # I have yet to find one case of this being useful
[workspace.lints.rustdoc]
broken_intra_doc_links = "deny"