mirror of
https://github.com/cdr/code-server.git
synced 2025-12-06 16:34:35 +01:00
11 lines
127 B
Bash
Executable file
11 lines
127 B
Bash
Executable file
#!/usr/bin/env sh
|
|
# lint.sh -- Lint CSS and JS files.
|
|
|
|
set -eu
|
|
|
|
main() {
|
|
yarn lint:css "$@"
|
|
yarn lint:js "$@"
|
|
}
|
|
|
|
main "$@"
|