Skip to content

Commit aa30c49

Browse files
committed
Allow clippy::redundant_pattern_matching
1 parent 02b6f87 commit aa30c49

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

crates/tools/src/lib.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,10 @@ pub fn run_clippy() -> Result<()> {
146146

147147
let allowed_lints = [
148148
"clippy::collapsible_if",
149-
"clippy::nonminimal_bool",
150-
"clippy::needless_pass_by_value",
151149
"clippy::map_clone", // FIXME: remove when Iterator::copied stabilizes (1.36.0)
150+
"clippy::needless_pass_by_value",
151+
"clippy::nonminimal_bool",
152+
"clippy::redundant_pattern_matching",
152153
];
153154
run(
154155
&format!(

0 commit comments

Comments
 (0)