mirror of
https://github.com/coder/code-server.git
synced 2026-05-09 22:07:26 +02:00
14 lines
230 B
Bash
Executable File
14 lines
230 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" | grep -v "lib/vscode")
|
|
tsc --noEmit --skipLibCheck
|
|
|
|
cd "$OLDPWD"
|
|
}
|
|
|
|
main "$@"
|