aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgolint.bash17
1 files changed, 0 insertions, 17 deletions
diff --git a/golint.bash b/golint.bash
deleted file mode 100755
index d6fe729..0000000
--- a/golint.bash
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash -u
-
-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 "don't use underscores in Go names"
-)
-
-# No output --> all good
-if [[ -z $OUTPUT ]] ; then
- exit 0
-fi
-
-echo "golint.bash:"
-echo "$OUTPUT"
-exit 1