summaryrefslogtreecommitdiff
path: root/docs/leap-autopep8.post-commit.hook
diff options
context:
space:
mode:
Diffstat (limited to 'docs/leap-autopep8.post-commit.hook')
-rwxr-xr-xdocs/leap-autopep8.post-commit.hook15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/leap-autopep8.post-commit.hook b/docs/leap-autopep8.post-commit.hook
deleted file mode 100755
index cffb1d5..0000000
--- a/docs/leap-autopep8.post-commit.hook
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-# Auto pep8 correction as a post-commit hook.
-# Thanks to http://victorlin.me/posts/2014/02/05/auto-post-commit-pep8-correction
-
-echo "[+] running autopep8..."
-FILES=$(git diff HEAD^ HEAD --name-only --diff-filter=ACM | grep -e '\.py$')
-
-for f in $FILES
-do
- # auto pep8 correction
- autopep8 --in-place $f
-done
-
-git status