Skip to content

Commit

Permalink
chore: disable SC2034 in check_wasm.sh (#11854)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Oct 17, 2024
1 parent b57cbfd commit bc43613
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/assets/check_wasm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ set +e # Disable immediate exit on error

# Array of crates to compile
crates=($(cargo metadata --format-version=1 --no-deps | jq -r '.packages[].name' | grep '^reth' | sort))

# Array of crates to exclude
# Used with the `contains` function.
# shellcheck disable=SC2034
exclude_crates=(
# The following are not working yet, but known to be fixable
reth-exex-types # https://github.com/paradigmxyz/reth/issues/9946
Expand Down

0 comments on commit bc43613

Please sign in to comment.