Skip to content

Commit 1524dcf

Browse files
committed
Use local suppression for clippy::too_many_arguments
1 parent 4c2bbb6 commit 1524dcf

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/dist/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -889,6 +889,7 @@ pub(crate) async fn update_from_dist(
889889
res
890890
}
891891

892+
#[allow(clippy::too_many_arguments)]
892893
async fn try_update_from_dist_(
893894
download: DownloadCfg<'_>,
894895
update_hash: Option<&Path>,

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#![deny(rust_2018_idioms)]
22
#![allow(
3-
clippy::too_many_arguments,
43
clippy::type_complexity,
54
clippy::upper_case_acronyms, // see https://github.com/rust-lang/rust-clippy/issues/6974
65
clippy::vec_init_then_push, // uses two different styles of initialization

0 commit comments

Comments
 (0)