From 59ff828794429bdffce807a7c7cd5b6a24a459bf Mon Sep 17 00:00:00 2001 From: Mark Beamer Jr Date: Thu, 21 Mar 2019 23:37:01 -0400 Subject: [PATCH] dont go get go lint --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dee892f..6c687df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,7 +26,7 @@ before_script: # All the .go files, excluding vendor/ and model (auto generated) - GO_FILES=$(find . -iname '*.go' ! -iname '*_test.go' -type f | grep -v /vendor/ ) - go get golang.org/x/tools/cmd/goimports # Used in build script for generated files - - go get github.com/golang/lint/golint # Linter +# - go get github.com/golang/lint/golint # Linter - go get honnef.co/go/tools/cmd/megacheck # Badass static analyzer/linter - go get github.com/jgautheron/gocyclo # Check against high complexity - go get github.com/mdempsky/unconvert # Identifies unnecessary type conversions