diff options
author | Jakob Unterwurzacher | 2025-07-07 17:01:52 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2025-07-07 17:01:52 +0200 |
commit | ba222871c1bf70cad56ac2ddbae8728154e9137b (patch) | |
tree | 87d567fc4c8fe2f6c2a39ce0cb2444081ce46177 | |
parent | c82ca93f29ea8fe7990558917e20ae5afcd2fab0 (diff) |
Delete deprecated golint.bash
golint is dead since 2021
-rwxr-xr-x | golint.bash | 17 |
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 |