Skip to content

Commit

Permalink
Temporarily fix check.sh klippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Bromeon committed Mar 2, 2025
1 parent 0f9f493 commit d9653de
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ function cmd_clippy() {
}

function cmd_klippy() {
# TODO(Rust 1.86): remove `-A clippy::precedence`.

run cargo clippy --fix --all-targets "${extraCargoArgs[@]}" -- \
-D clippy::suspicious \
-D clippy::style \
Expand All @@ -173,7 +175,8 @@ function cmd_klippy() {
-D clippy::dbg_macro \
-D clippy::todo \
-D clippy::unimplemented \
-D warnings
-D warnings \
-A clippy::precedence
}

function cmd_test() {
Expand Down

0 comments on commit d9653de

Please sign in to comment.