Skip to content

Commit

Permalink
Allow clippy::redundant_pattern_matching
Browse files Browse the repository at this point in the history
  • Loading branch information
alanhdu committed Jun 4, 2019
1 parent 02b6f87 commit aa30c49
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crates/tools/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,10 @@ pub fn run_clippy() -> Result<()> {

let allowed_lints = [
"clippy::collapsible_if",
"clippy::nonminimal_bool",
"clippy::needless_pass_by_value",
"clippy::map_clone", // FIXME: remove when Iterator::copied stabilizes (1.36.0)
"clippy::needless_pass_by_value",
"clippy::nonminimal_bool",
"clippy::redundant_pattern_matching",
];
run(
&format!(
Expand Down

0 comments on commit aa30c49

Please sign in to comment.