mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-25 16:47:15 +01:00
19 lines
335 B
Bash
Executable File
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
|