mirror of
https://git.tuxpa.in/a/code-server.git
synced 2024-12-27 12:45:25 +00:00
12 lines
183 B
Bash
Executable File
12 lines
183 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
eslint --max-warnings=0 --fix $(git ls-files "*.ts" "*.tsx" "*.js")
|
|
stylelint $(git ls-files "*.css")
|
|
tsc --noEmit
|
|
}
|
|
|
|
main "$@"
|