forked from indico/indico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pre-commit.githook
executable file
·100 lines (83 loc) · 2.63 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#!/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='pep8'
PEP8_OPTIONS='--max-line-length=120'
ESLINT_CMD='eslint'
SASSLINT_CMD='sass-lint'
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")
}
# Most spammy checks first so the most likely useful ones are at the
# bottom and thus less likely to scroll out of view immediately
# SASSLint
_get_files '*.scss'
if [[ ${#FILES[@]} -ne 0 ]]; then
if ! RESULT=$(FORCE_COLOR=1 $SASSLINT_CMD -vq "${FILES[@]}"); then
STATUS=1
echo "${RED}There are SCSS errors in your code:${RESET}"
echo "$RESULT"
elif [[ -n "$RESULT" ]] ; then
STATUS=1
echo "${BRIGHTYELLOW}There are SCSS warnings in your code:${RESET}"
echo "$RESULT"
fi
fi
# ESLint
_get_files '*.js'
if [[ ${#FILES[@]} -ne 0 ]]; then
if ! RESULT=$($ESLINT_CMD --color "${FILES[@]}"); then
STATUS=1
echo "${RED}There are JS errors in your code:${RESET}"
echo "$RESULT"
elif [[ -n "$RESULT" ]] ; then
STATUS=1
echo "${BRIGHTYELLOW}There are JS warnings in your code:${RESET}"
echo "$RESULT"
fi
fi
# PEP8
if ! RESULT=$(git diff -U0 --staged | $PEP8_CMD --diff $PEP8_OPTIONS); 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 d '*.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