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

12 lines
209 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
set -e
2023-12-03 18:24:45 +00:00
FORMAT_FILES=$(
git --no-pager diff --name-status --no-color --cached | \
awk '$1 != "D" && $2 ~ /\.exs?$/ {print $NF}'
)
2023-12-03 18:24:45 +00:00
mix format "$FORMAT_FILES"
git add "$FORMAT_FILES"