Suppress option_if_let_else clippy pedantic lint

This commit is contained in:
David Tolnay 2020-07-14 18:57:24 -07:00
parent 9e140a2071
commit 3022064f84
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 2 additions and 0 deletions

View File

@ -111,6 +111,7 @@
// things are often more readable this way
cast_lossless,
module_name_repetitions,
option_if_let_else,
single_match_else,
type_complexity,
use_self,

View File

@ -40,6 +40,7 @@
clippy::match_same_arms,
clippy::module_name_repetitions,
clippy::must_use_candidate,
clippy::option_if_let_else,
clippy::similar_names,
clippy::single_match_else,
clippy::struct_excessive_bools,