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

23 lines
457 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
set -e
2023-12-03 18:24:45 +00:00
MIX_FILES=$(
git --no-pager diff --name-status --no-color --cached | \
awk '$1 != "D" && $2 ~ /\.exs?$/ {print $NF}'
)
2023-12-03 18:32:45 +00:00
if [ -n "$MIX_FILES" ]; then
mix format "$MIX_FILES"
git add "$MIX_FILES"
fi
2023-12-03 18:24:45 +00:00
WEB_FILES=$(
git --no-pager diff --name-status --no-color --cached | \
awk '$1 != "D" && $2 ~ /\.jsx?$|\.tsx?$/ {print $NF}'
)
2023-12-03 18:32:45 +00:00
if [ -n "$WEB_FILES" ]; then
prettier --write "$WEB_FILES"
git add "$WEB_FILES"
fi