Skip to content

Commit

Permalink
travis: fix installation of linters
Browse files Browse the repository at this point in the history
  • Loading branch information
haya14busa committed Sep 21, 2019
1 parent 22b611d commit dfdc789
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .travis.yml
Expand Up @@ -17,15 +17,14 @@ env:
install:
- go install ./cmd/reviewdog
# Install linters.
- (
cd linters
go get golang.org/x/lint/golint
go get github.com/kisielk/errcheck
go get honnef.co/go/tools/cmd/staticcheck
go get github.com/client9/misspell/cmd/misspell
go get mvdan.cc/unparam
go get github.com/mgechev/revive
)
- cd linters
- go get golang.org/x/lint/golint
- go get github.com/kisielk/errcheck
- go get honnef.co/go/tools/cmd/staticcheck
- go get github.com/client9/misspell/cmd/misspell
- go get mvdan.cc/unparam
- go get github.com/mgechev/revive
- cd -
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s -- -b $GOPATH/bin
- npm install

Expand Down

0 comments on commit dfdc789

Please sign in to comment.