blob: f1ac2ed3560ad26c19b051927917bdbdbf9082a5 (
plain)
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
|
#!/bin/sh
#
# Check syntax of Python and JavaScript files.
if git rev-parse --verify HEAD >/dev/null 2>&1
then
against=HEAD
else
# Initial commit: diff against an empty tree object
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi
files=$(git diff --cached --name-only --diff-filter=AMR -z $against)
python_files=$(echo $files | grep .*\.py)
javascript_files=$(echo $files | grep .*\.js)
flake_exit=0
jshint_exit=0
if [ -n "$python_files" ]; then
flake8 $python_files
flake_exit=$?
fi
if [ -n "$javascript_files" ]; then
./node_modules/.bin/jshint $javascript_files
jshint_exit=$?
fi
if [ !$flake_exit ] || [ !$jshint_exit ]; then
exit 1
fi
|