bootstrap/specs/nodejs/template/.githooks/pre-commit

22 lines
491 B
Plaintext
Raw Normal View History

2023-12-01 22:52:24 +00:00
#!/usr/bin/env bash
set -e
2023-12-03 21:28:55 +00:00
STAGED=$(
git --no-pager diff --name-only --no-color --cached --diff-filter=d |
# Remove quotations used to surrounding filenames with special characters.
sed -e "s/^\"//" -e "s/\"$//g"
2023-12-01 22:52:24 +00:00
)
2023-12-03 21:28:55 +00:00
TARGETS=()
while IFS= read -r FILENAME
do
if [[ "$FILENAME" =~ .*\.jsx? ]] || [[ "$FILENAME" == .*\.tsx? ]]; then
TARGETS+=("${FILENAME}")
fi
done <<< "$STAGED"
if (( ${#TARGETS[@]} )); then
prettier --write "${TARGETS[@]}"
git add "${TARGETS[@]}"
2023-12-03 18:32:45 +00:00
fi