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

12 lines
210 B
Plaintext
Raw Normal View History

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