Skip to content

Commit

Permalink
Drop redundant #[allow(clippy::*)]
Browse files Browse the repository at this point in the history
  • Loading branch information
kinto-b committed Jun 17, 2024
1 parent 85b9f87 commit acb3708
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benches/specializations.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unstable_name_collisions, clippy::incompatible_msrv)]
#![allow(unstable_name_collisions)]

use criterion::black_box;
use criterion::BenchmarkId;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![warn(missing_docs, clippy::default_numeric_fallback)]
#![warn(missing_docs)]
#![crate_name = "itertools"]
#![cfg_attr(not(feature = "use_std"), no_std)]

Expand Down
1 change: 0 additions & 1 deletion tests/quick.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,6 @@ where
let mut it = get_it();

for _ in 0..(counts.len() - 1) {
#[allow(clippy::manual_assert)]
if it.next().is_none() {
panic!("Iterator shouldn't be finished, may not be deterministic");
}
Expand Down

0 comments on commit acb3708

Please sign in to comment.