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

30 lines
706 B
Plaintext
Raw Normal View History

#!/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-03 21:28:55 +00:00
MIX_TARGETS=()
WEB_TARGETS=()
while IFS= read -r FILENAME
do
if [[ "$FILENAME" =~ .*\.exs?$ ]]; then
2023-12-03 21:28:55 +00:00
MIX_TARGETS+=("${FILENAME}")
elif [[ "$FILENAME" =~ .*\.jsx?$ ]] || [[ "$FILENAME" =~ .*\.tsx?$ ]]; then
2023-12-03 21:28:55 +00:00
WEB_TARGETS+=("${FILENAME}")
fi
done <<< "$STAGED"
2023-12-03 18:32:45 +00:00
2023-12-03 21:28:55 +00:00
if (( ${#MIX_TARGETS[@]} )); then
mix format "${MIX_TARGETS[@]}"
git add "${MIX_TARGETS[@]}"
fi
2023-12-03 21:28:55 +00:00
if (( ${#WEB_TARGETS[@]} )); then
prettier --write "${WEB_TARGETS[@]}"
git add "${WEB_TARGETS[@]}"
2023-12-03 18:32:45 +00:00
fi