11 lines
No EOL
304 B
Bash
11 lines
No EOL
304 B
Bash
#!/bin/sh
|
|
jsfiles=$(git diff --cached --name-only --diff-filter=ACM "*.js" | tr '\n' ' ')
|
|
[ -z "$jsfiles" ] && exit 0
|
|
|
|
# Prettify all staged .js files
|
|
echo "$jsfiles" | xargs ./node_modules/.bin/prettier --write
|
|
|
|
# Add back the modified/prettified files to staging
|
|
echo "$jsfiles" | xargs git add
|
|
|
|
exit 0 |