code-server/ci/dev/lint.sh

13 lines
137 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
tsc --noEmit --skipLibCheck
cd "$OLDPWD"
}
main "$@"