mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-16 01:38:13 +00:00
Allow clippy::redundant_pattern_matching
This commit is contained in:
parent
02b6f871f1
commit
aa30c4909e
1 changed files with 3 additions and 2 deletions
|
@ -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!(
|
||||
|
|
Loading…
Reference in a new issue