mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 10:01:39 -05:00
10 lines
321 B
Bash
Executable file
10 lines
321 B
Bash
Executable file
#!/bin/sh
|
|
|
|
jsfiles=$(git diff --cached --name-only --diff-filter=ACM "*.js" "*.jsx" "*.ts" "*.tsx" | 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
|