pre-commit git hook:

-gofmt
-trailing space check

Change-Id: Icd63483b1873b21cd5ff6f00fff4b191095942ad
This commit is contained in:
mpl 2012-10-16 16:31:23 +02:00
parent 0b15eb0cc8
commit 4a184c84d5
1 changed files with 29 additions and 0 deletions

29
misc/pre-commit.githook Executable file
View File

@ -0,0 +1,29 @@
#!/usr/bin/env sh
exitstatus=0
committed=`git diff-index --cached --name-only HEAD`
for c in $committed
do
gofile=`echo $c | grep -E '.*\.go$'`
if [ -n "$gofile" ]
then
fmtdiff=`gofmt -d $c 2>&1`
if [ -n "$fmtdiff" ]
then
echo "gofmt needed on "$c
exitstatus=1
fi
trailspace=`git diff-index --cached --check HEAD $c | grep 'trailing whitespace'`
if [ -n "$trailspace" ]
then
echo $trailspace
exitstatus=1
fi
fi
done
if [ "$exitstatus" -ne 0 ]
then
echo "You can override this check with 'git commit --no-verify'"
fi
exit $exitstatus