Files
trezor-suite/scripts/shellcheck.sh
2026-03-17 16:48:25 +01:00

19 lines
335 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 './suite-native/app/ios/*' \
! -path './submodules/*' \
! -path './.husky/_/*' \
-print0 |
xargs -0 shellcheck