Files
trezor-suite/scripts/shellcheck.sh
2022-08-19 11:03:00 +02:00

11 lines
231 B
Bash
Executable File

#!/usr/bin/env bash
set -e
set -u
set -x
set -o pipefail
shellcheck --version
# lint all *.sh files
find . -type f -name '*.sh' ! -path './node_modules/*' ! -path './yarn/*' ! -path './submodules/*' -print0 | xargs -0 shellcheck