1
0
Fork 0
forked from Mirrors/gomuks
nyxmuks/.pre-commit-eslint.sh
2024-10-12 16:30:05 +03:00

6 lines
122 B
Bash
Executable file

#!/bin/bash
cd web > /dev/null
if [[ -f "./node_modules/.bin/eslint" ]]; then
ARGS=("$@")
eslint ${ARGS[@]/#web\// }
fi