dont go get go lint

This commit is contained in:
Mark Beamer Jr 2019-03-21 23:37:01 -04:00
parent 4569d04522
commit 59ff828794
No known key found for this signature in database
GPG key ID: 1C314FB89AD76973

View file

@ -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