aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2025-07-07 17:01:52 +0200
committerJakob Unterwurzacher2025-07-07 17:01:52 +0200
commitba222871c1bf70cad56ac2ddbae8728154e9137b (patch)
tree87d567fc4c8fe2f6c2a39ce0cb2444081ce46177
parentc82ca93f29ea8fe7990558917e20ae5afcd2fab0 (diff)
Delete deprecated golint.bash
golint is dead since 2021
-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