We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
check.sh klippy
1 parent 7122f82 commit 44a479cCopy full SHA for 44a479c
check.sh
@@ -165,6 +165,8 @@ function cmd_clippy() {
165
}
166
167
function cmd_klippy() {
168
+ # TODO(Rust 1.86): remove `-A clippy::precedence`.
169
+
170
run cargo clippy --fix --all-targets "${extraCargoArgs[@]}" -- \
171
-D clippy::suspicious \
172
-D clippy::style \
@@ -173,7 +175,8 @@ function cmd_klippy() {
173
175
-D clippy::dbg_macro \
174
176
-D clippy::todo \
177
-D clippy::unimplemented \
- -D warnings
178
+ -D warnings \
179
+ -A clippy::precedence
180
181
182
function cmd_test() {
0 commit comments