Initial Commit

This commit is contained in:
Ben LeMasurier
2016-05-19 18:05:37 -06:00
commit 2ccd33a8df
13 changed files with 2013 additions and 0 deletions

12
scripts/golint.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Verify that all files are correctly golint'd.
EXIT=0
GOLINT=$(golint ./...)
if [[ ! -z $GOLINT ]]; then
echo $GOLINT
EXIT=1
fi
exit $EXIT