Skip to content

Commit

Permalink
Merge pull request #276 from dtolnay/optionifletelse
Browse files Browse the repository at this point in the history
Remove option_if_let_else clippy suppression
  • Loading branch information
dtolnay committed Dec 30, 2023
2 parents af28d9c + b97654a commit fe40a50
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion impl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 1 addition & 5 deletions tests/test_expr.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit fe40a50

Please sign in to comment.