Ignore wildcard_in_or_patterns lint

This commit is contained in:
David Tolnay 2020-01-14 20:31:03 -08:00
parent 895eb2ba6c
commit dfa321a1dd
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 3 additions and 1 deletions

View File

@ -28,6 +28,7 @@
too_many_arguments,
trivially_copy_pass_by_ref,
used_underscore_binding,
wildcard_in_or_patterns,
)
)]
// Ignored clippy_pedantic lints

View File

@ -6,7 +6,8 @@
allow(
cognitive_complexity,
redundant_field_names,
trivially_copy_pass_by_ref
trivially_copy_pass_by_ref,
wildcard_in_or_patterns
)
)]