mirror of
https://github.com/tulir/gomuks.git
synced 2025-04-16 08:53:41 -05:00
6 lines
156 B
Bash
Executable file
6 lines
156 B
Bash
Executable file
#!/usr/bin/env bash
|
|
cd web > /dev/null
|
|
if [[ -f "./node_modules/.bin/eslint" ]]; then
|
|
ARGS=("$@")
|
|
./node_modules/.bin/eslint --fix ${ARGS[@]/#web\// }
|
|
fi
|