mirror of
https://github.com/cdr/code-server.git
synced 2025-12-16 05:13:31 +01:00
16 lines
266 B
Bash
Executable file
16 lines
266 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
if [[ ${CI-} ]]; then
|
|
cd "$(dirname "$0")/.."
|
|
./ci/vscode.sh
|
|
fi
|
|
|
|
eslint --max-warnings=0 --fix $(git ls-files "*.ts" "*.tsx" "*.js")
|
|
stylelint --fix $(git ls-files "*.css")
|
|
tsc --noEmit
|
|
}
|
|
|
|
main "$@"
|