forked from Mirrors/gomuks
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
|