mirror of
https://github.com/cdr/code-server.git
synced 2025-12-12 03:15:56 +01:00
13 lines
230 B
Bash
Executable file
13 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 "$@"
|