Skip to content

Commit 33cfa80

Browse files
committed
Ignore clippy::too_many_arguments rule in CI
1 parent 0a4cf44 commit 33cfa80

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ jobs:
115115
with:
116116
command: clippy
117117
# `identity_op` and `or_fun_call` leads to false positives
118-
args: -- -D warnings -A clippy::identity_op -A clippy::or_fun_call
118+
# `too-many-arguments` is relatively arbitrary
119+
args: -- -D warnings -A clippy::identity_op -A clippy::or_fun_call -A clippy::too-many-arguments
119120

120121
build:
121122
name: Build Static Binaries

0 commit comments

Comments
 (0)