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