Skip to content

Commit 44a479c

Browse files
committed
Temporarily fix check.sh klippy
1 parent 7122f82 commit 44a479c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

check.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,8 @@ function cmd_clippy() {
165165
}
166166

167167
function cmd_klippy() {
168+
# TODO(Rust 1.86): remove `-A clippy::precedence`.
169+
168170
run cargo clippy --fix --all-targets "${extraCargoArgs[@]}" -- \
169171
-D clippy::suspicious \
170172
-D clippy::style \
@@ -173,7 +175,8 @@ function cmd_klippy() {
173175
-D clippy::dbg_macro \
174176
-D clippy::todo \
175177
-D clippy::unimplemented \
176-
-D warnings
178+
-D warnings \
179+
-A clippy::precedence
177180
}
178181

179182
function cmd_test() {

0 commit comments

Comments
 (0)