mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 12:07:49 +02:00
15 lines
361 B
Bash
Executable file
15 lines
361 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Linting staged files..."
|
|
npm install > /dev/null || exit 1
|
|
|
|
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
|