Merge pull request #276 from dtolnay/optionifletelse

Remove option_if_let_else clippy suppression
This commit is contained in:
David Tolnay 2023-12-30 14:44:38 -08:00 committed by GitHub
commit fe40a5034c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 6 deletions

View File

@ -8,7 +8,6 @@
clippy::map_unwrap_or,
clippy::module_name_repetitions,
clippy::needless_pass_by_value,
clippy::option_if_let_else,
clippy::range_plus_one,
clippy::single_match_else,
clippy::struct_field_names,

View File

@ -1,8 +1,4 @@
#![allow(
clippy::iter_cloned_collect,
clippy::option_if_let_else,
clippy::uninlined_format_args
)]
#![allow(clippy::iter_cloned_collect, clippy::uninlined_format_args)]
use std::fmt::Display;
use thiserror::Error;