summaryrefslogtreecommitdiffstats
path: root/pre-commit.sh
blob: 4f073799a569a492b4c64c10665a7ccfb3ff4861 (plain)
1
2
3
4
5
6
if [ -z $AWX_IGNORE_BLACK ]
then
        black --check $(git diff --cached --name-only --diff-filter=AM | grep -E '\.py') || \
        (echo 'To fix this, run `make black` to auto-format your code prior to commit, or set AWX_IGNORE_BLACK=1' && \
        exit 1)
fi