17 lines
357 B
Bash
Executable File
17 lines
357 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
eslint --max-warnings=0 --fix $(git ls-files "*.ts" "*.tsx" "*.js")
|
|
stylelint $(git ls-files "*.css")
|
|
tsc --noEmit
|
|
# See comment in ./ci/image/debian8
|
|
if [[ ! ${CI-} ]]; then
|
|
shellcheck -e SC2046,SC2164,SC2154,SC1091,SC1090 $(git ls-files "*.sh")
|
|
fi
|
|
}
|
|
|
|
main "$@"
|