-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpre-commit.githook
executable file
·65 lines (53 loc) · 1.68 KB
/
pre-commit.githook
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/bash
# vim: et ts=4 sw=4 ft=sh
# Interesting post on max line length:
# http://stackoverflow.com/questions/88942/why-should-python-pep-8-specify-a-maximum-line-length-of-79-characters
PEP8_CMD='flake8'
PEP8_OPTIONS='--max-line-length=120'
RED=$(echo -e $"\033[1;31m")
YELLOW=$(echo -e $"\033[0;33m")
CYAN=$(echo -e $"\033[0;36m")
RESET=$(echo -e $"\033[0;0m")
BRIGHTYELLOW=$(echo -e $"\033[1;33m")
WHITE=$(echo -e $"\033[1;37m")
RE="s/\([^:]*\):\([0-9]*\):\([0-9]*\): \([EW][0-9]*\) \(.*\)/$WHITE[$CYAN\1$RESET $BRIGHTYELLOW\2:\3$WHITE] $RED\4 $YELLOW\5$RESET/g"
STATUS=0
_get_files() {
local i
unset FILES
while IFS= read -r -d $'\0' file; do
FILES[i++]="$file"
done < <(git diff --name-only --diff-filter=ACMR --staged -z "$1")
}
# Flake8
if ! RESULT=$(flake8 $(git status -s | grep -E '\.py$' | cut -c 4-)); then
echo "${RED}There are PEP8 issues in your code:${RESET}"
STATUS=1
fi
if [[ -n "$RESULT" ]] ; then
echo "$RESULT" | sed -e "$RE"
echo
fi
# isort
if ! RESULT=$(python -c 'import sys; from isort.hooks import git_hook; sys.exit(git_hook(strict=True))'); then
STATUS=1
echo "${RED}There are isort issues in your code:${RESET}"
echo "$RESULT"
echo
echo "${CYAN}Run this command to sort the imports:${RESET}"
echo "git diff --staged --name-only --diff-filter '*.py' | xargs isort"
fi
if [[ $STATUS != 0 ]] ; then
# claim stdin back
exec < /dev/tty
echo
read -r -p "${RED}Do you wish to commit it anyway ${CYAN}[${WHITE}y${CYAN}/${WHITE}N${CYAN}]${RESET}? " yn
case $yn in
[Yy]* ) exit 0;;
[Nn]* ) exit $STATUS;;
* ) exit $STATUS;;
esac
# close stdin
exec <&-
fi
exit $STATUS