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

13 lines
247 B
Bash
Executable File

#!/usr/bin/env bash
set -e
FORMAT_FILES=$(
git --no-pager diff --name-status --no-color --cached | \
awk '$1 != "D" && $2 ~ /\.exs?$/ {print $NF}'
)
if [ -n "$FORMAT_FILES" ]; then
mix format "$FORMAT_FILES"
git add "$FORMAT_FILES"
fi