Version-peg golint

pull/668/head
Eugene Kim 6 years ago
parent ca6fd788ce
commit b6ad958a53
  1. 1
      .travis.yml
  2. 1
      go.mod
  3. 1
      tools/tools.go

@ -20,7 +20,6 @@ install:
- make
- cd ../harmony
- go get -v ./...
- go get -u golang.org/x/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
- go get gopkg.in/check.v1
- go get github.com/harmony-ek/gencodec

@ -42,6 +42,7 @@ require (
github.com/stretchr/testify v1.3.0
github.com/whyrusleeping/go-logging v0.0.0-20170515211332-0457bb6b88fc
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3
google.golang.org/grpc v1.19.0
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect

@ -10,4 +10,5 @@ package tools
// Put only installable tools into this list.
// scripts/install_build_tools.sh parses these imports to install them.
import (
_ "golang.org/x/lint/golint"
)

Loading…
Cancel
Save