1
0
Fork 0
forked from Mirrors/gomuks
nyxmuks/.pre-commit-eslint.sh
2024-10-13 17:11:43 +03:00

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