We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c4eb457 + 622544b commit 6771d84Copy full SHA for 6771d84
1 file changed
ci/check-lint.sh
@@ -10,6 +10,7 @@ CLIPPY() {
10
`# Things where clippy is just wrong` \
11
-A clippy::unwrap-or-default \
12
-A clippy::upper_case_acronyms \
13
+ -A clippy::swap-with-temporary \
14
`# Things where we do odd stuff on purpose ` \
15
-A clippy::unusual_byte_groupings \
16
-A clippy::unit_arg \
@@ -105,7 +106,8 @@ CLIPPY() {
105
106
-A clippy::useless_conversion \
107
-A clippy::unnecessary_map_or `# to be removed once we hit MSRV 1.70` \
108
-A clippy::manual_repeat_n `# to be removed once we hit MSRV 1.86` \
- -A clippy::io_other_error `# to be removed once we hit MSRV 1.74`
109
+ -A clippy::io_other_error `# to be removed once we hit MSRV 1.74` \
110
+ -A clippy::uninlined-format-args
111
}
112
113
CLIPPY
0 commit comments