diff options
Diffstat (limited to 'golint.bash')
-rwxr-xr-x | golint.bash | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/golint.bash b/golint.bash index 6da72c8..5040c12 100755 --- a/golint.bash +++ b/golint.bash @@ -1,7 +1,18 @@ -#!/bin/bash +#!/bin/bash -u -golint ./... | \ - grep -v "don't use an underscore in package name" | \ - grep -v "don't use ALL_CAPS in Go names; use CamelCase" | - grep -v "struct field allow_other should be allowOther" | - grep -v "struct field serialize_reads should be serializeReads" +OUTPUT=$( + golint ./... | \ + grep -v "don't use an underscore in package name" | \ + grep -v "don't use ALL_CAPS in Go names; use CamelCase" | + grep -v "struct field allow_other should be allowOther" | + grep -v "struct field serialize_reads should be serializeReads" +) + +# No output --> all good +if [[ -z "$OUTPUT" ]] ; then + exit 0 +fi + +echo "golint.bash:" +echo $OUTPUT +exit 1 |