Skip to content

Commit

Permalink
allow clippy::iter_count
Browse files Browse the repository at this point in the history
  • Loading branch information
TaKO8Ki committed Feb 25, 2021
1 parent 3a264b7 commit 53cc66c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/ui/needless_collect.fixed
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// run-rustfix

#![allow(unused, clippy::suspicious_map)]
#![allow(unused, clippy::suspicious_map, clippy::iter_count)]

use std::collections::{BTreeSet, HashMap, HashSet};

Expand Down
2 changes: 1 addition & 1 deletion tests/ui/needless_collect.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// run-rustfix

#![allow(unused, clippy::suspicious_map)]
#![allow(unused, clippy::suspicious_map, clippy::iter_count)]

use std::collections::{BTreeSet, HashMap, HashSet};

Expand Down

0 comments on commit 53cc66c

Please sign in to comment.