Skip to content

Commit

Permalink
wasm/Make: run clippy with --all-targets
Browse files Browse the repository at this point in the history
  • Loading branch information
tzemanovic committed Jul 5, 2024
1 parent daaae7b commit 4a88e39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wasm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ check:
$(cargo) +$(nightly) check --workspace --target wasm32-unknown-unknown

clippy:
$(cargo) +$(nightly) clippy --workspace -- -D warnings
$(cargo) +$(nightly) clippy --all-targets --workspace -- -D warnings

clippy-fix:
$(cargo) +$(nightly) clippy --fix -Z unstable-options --workspace --allow-dirty --allow-staged
Expand Down
2 changes: 1 addition & 1 deletion wasm_for_tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ check:
$(cargo) +$(nightly) check --workspace --target wasm32-unknown-unknown

clippy:
$(cargo) +$(nightly) clippy --workspace -- -D warnings
$(cargo) +$(nightly) clippy --all-targets --workspace -- -D warnings

clippy-fix:
$(cargo) +$(nightly) clippy --fix -Z unstable-options --workspace --allow-dirty --allow-staged
Expand Down

0 comments on commit 4a88e39

Please sign in to comment.