chore: disable SC2034 in check_wasm.sh (#11854)

This commit is contained in:
DaniPopes
2024-10-17 22:33:37 +02:00
committed by GitHub
parent b57cbfd21b
commit bc43613be3

View File

@ -3,7 +3,10 @@ set +e # Disable immediate exit on error
# Array of crates to compile # Array of crates to compile
crates=($(cargo metadata --format-version=1 --no-deps | jq -r '.packages[].name' | grep '^reth' | sort)) crates=($(cargo metadata --format-version=1 --no-deps | jq -r '.packages[].name' | grep '^reth' | sort))
# Array of crates to exclude # Array of crates to exclude
# Used with the `contains` function.
# shellcheck disable=SC2034
exclude_crates=( exclude_crates=(
# The following are not working yet, but known to be fixable # The following are not working yet, but known to be fixable
reth-exex-types # https://github.com/paradigmxyz/reth/issues/9946 reth-exex-types # https://github.com/paradigmxyz/reth/issues/9946