summaryrefslogtreecommitdiffstats
path: root/pre-commit.sh
diff options
context:
space:
mode:
Diffstat (limited to 'pre-commit.sh')
-rwxr-xr-xpre-commit.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/pre-commit.sh b/pre-commit.sh
new file mode 100755
index 0000000000..24393c790b
--- /dev/null
+++ b/pre-commit.sh
@@ -0,0 +1,8 @@
+#!/usr/bin/bash
+
+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