Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
code-server/ci/dev/lint.sh

14 lines
272 B
Bash
Raw Permalink Normal View History

2020-02-14 18:54:52 -05:00
#!/usr/bin/env bash
set -euo pipefail
main() {
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-11 17:08:22 -04:00
shellcheck -e SC2046,SC2164,SC2154 $(git ls-files "*.sh")
2020-02-14 18:54:52 -05:00
}
main "$@"