nyxmuks/.pre-commit-eslint.sh
Sumner Evans 0133e7c037
pre-commit: use full relative path to eslint and tsc (#542)
Signed-off-by: Sumner Evans <sumner.evans@automattic.com>
2024-12-08 17:11:26 +02:00

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