piston/pre-commit

16 lines
361 B
Plaintext
Raw Permalink Normal View History

2021-10-08 15:16:57 +02:00
#!/bin/sh
echo "Linting staged files..."
2021-10-10 16:56:16 +02:00
npm install > /dev/null || exit 1
2021-10-08 15:16:57 +02:00
FILES=$(git diff --cached --name-only --diff-filter=ACMR | sed 's| |\\ |g')
[ -z "$FILES" ] && exit 0
# Prettify all selected files
echo "$FILES" | xargs npx prettier --ignore-unknown --write
# Add back the modified/prettified files to staging
echo "$FILES" | xargs git add
exit 0