Skip to content

Commit 44aa057

Browse files
committed
Removing golint from checks, we have enough and it is erroring
1 parent ded57b1 commit 44aa057

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ matrix:
2626
# set -e enabled in bash.
2727
before_script:
2828
- GO_FILES=$(find . -iname '*.go' -type f | grep -v /vendor/) # All the .go files, excluding vendor/
29-
- go get -u golang.org/x/lint/golint # Linter
3029
- go get honnef.co/go/tools/cmd/megacheck # Badass static analyzer/linter
3130
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
3231
- dep ensure
@@ -38,7 +37,6 @@ script:
3837
- go test -race -coverprofile=coverage.txt -covermode=atomic # Run all the tests with the race detector enabled
3938
- go vet ./... # go vet is the official Go static analyzer
4039
- megacheck ./... # "go vet on steroids" + linter
41-
- golint -set_exit_status $(go list ./...) # one last linter
4240

4341
# push results to CodeCov
4442
after_success:

0 commit comments

Comments
 (0)