2020-02-14 18:54:52 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
main() {
|
2020-04-30 07:52:54 -04:00
|
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
|
2020-02-14 19:46:00 -05:00
|
|
|
eslint --max-warnings=0 --fix $(git ls-files "*.ts" "*.tsx" "*.js")
|
2020-02-18 19:06:35 -05:00
|
|
|
stylelint $(git ls-files "*.css")
|
2020-02-14 19:46:00 -05:00
|
|
|
tsc --noEmit
|
2020-05-17 20:45:48 -04:00
|
|
|
# See comment in ./ci/container/Dockerfile
|
|
|
|
if [[ ! ${CI-} ]]; then
|
2020-05-27 15:48:03 -04:00
|
|
|
shellcheck -e SC2046,SC2164,SC2154,SC1091,SC1090 $(git ls-files "*.sh")
|
2020-05-17 20:45:48 -04:00
|
|
|
fi
|
2020-02-14 18:54:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|