File tree Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Expand file tree Collapse file tree 4 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,10 @@ require (
4
4
cloud.google.com/go v0.26.0 // indirect
5
5
github.com/client9/misspell v0.3.4
6
6
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
7
- github.com/golang/lint v0.0.0-20180702182130-06c8688daad7
8
7
github.com/golang/mock v1.1.1
9
8
github.com/golang/protobuf v1.2.0
10
9
github.com/kisielk/gotool v1.0.0 // indirect
11
- golang.org/x/lint v0.0.0-20180702182130-06c8688daad7 // indirect
10
+ golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3
12
11
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d
13
12
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be
14
13
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f // indirect
Original file line number Diff line number Diff line change @@ -4,16 +4,14 @@ github.com/client9/misspell v0.3.4 h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJ
4
4
github.com/client9/misspell v0.3.4 /go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw =
5
5
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58 =
6
6
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b /go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q =
7
- github.com/golang/lint v0.0.0-20180702182130-06c8688daad7 h1:2hRPrmiwPrp3fQX967rNJIhQPtiGXdlQWAxKbKw3VHA =
8
- github.com/golang/lint v0.0.0-20180702182130-06c8688daad7 /go.mod h1:tluoj9z5200jBnyusfRPU2LqT6J+DAorxEvtC7LHB+E =
9
7
github.com/golang/mock v1.1.1 h1:G5FRp8JnTd7RQH5kemVNlMeyXQAztQ3mOWV95KxsXH8 =
10
8
github.com/golang/mock v1.1.1 /go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A =
11
9
github.com/golang/protobuf v1.2.0 h1:P3YflyNX/ehuJFLhxviNdFxQPkGK5cDcApsge1SqnvM =
12
10
github.com/golang/protobuf v1.2.0 /go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U =
13
11
github.com/kisielk/gotool v1.0.0 h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg =
14
12
github.com/kisielk/gotool v1.0.0 /go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck =
15
- golang.org/x/lint v0.0.0-20180702182130-06c8688daad7 h1:00BeQWmeaGazuOrq8Q5K5d3/cHaGuFrZzpaHBXfrsUA =
16
- golang.org/x/lint v0.0.0-20180702182130-06c8688daad7 /go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE =
13
+ golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3 h1:x/bBzNauLQAlE3fLku/xy92Y8QwKX5HZymrMz2IiKFc =
14
+ golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3 /go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE =
17
15
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d h1:g9qWBGx4puODJTMVyoPrpoxPFgVGd+z1DZwjfRu4d0I =
18
16
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d /go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4 =
19
17
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be h1:vEDujvNQGv4jgYKudGeI/+DAX4Jffq6hpD55MmoEvKs =
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ package tools
27
27
28
28
import (
29
29
_ "github.com/client9/misspell/cmd/misspell"
30
- _ "github.com/golang/lint/golint"
31
30
_ "github.com/golang/protobuf/protoc-gen-go"
31
+ _ "golang.org/x/lint/golint"
32
32
_ "golang.org/x/tools/cmd/goimports"
33
33
_ "honnef.co/go/tools/cmd/staticcheck"
34
34
)
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ if [[ "$1" = "-install" ]]; then
39
39
# Check for module support
40
40
if go help mod >& /dev/null; then
41
41
go install \
42
- github.com/golang /lint/golint \
42
+ golang.org/x /lint/golint \
43
43
golang.org/x/tools/cmd/goimports \
44
44
honnef.co/go/tools/cmd/staticcheck \
45
45
github.com/client9/misspell/cmd/misspell \
@@ -49,7 +49,7 @@ if [[ "$1" = "-install" ]]; then
49
49
# Note: this gets the latest version of all tools (vs. the pinned versions
50
50
# with Go modules).
51
51
go get -u \
52
- github.com/golang /lint/golint \
52
+ golang.org/x /lint/golint \
53
53
golang.org/x/tools/cmd/goimports \
54
54
honnef.co/go/tools/cmd/staticcheck \
55
55
github.com/client9/misspell/cmd/misspell \
You can’t perform that action at this time.
0 commit comments