aboutsummaryrefslogtreecommitdiff
path: root/tools.go
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2023-09-09 14:55:52 -0700
committerEric Biggers <ebiggers@google.com>2023-09-09 14:59:15 -0700
commit164d65b5ab5377587196748ac485bdda027b3a48 (patch)
treedba7ea16eb331f4ac7d382cd73b8b3896e4063f1 /tools.go
parented87812bb4d1fb37c66671f3eb598ac6194bc35c (diff)
Stop using golang.org/x/lint
golint is not supported anymore. See https://github.com/golang/go/issues/38968. We already use both 'go vet' and 'staticcheck' which are maintained.
Diffstat (limited to 'tools.go')
-rw-r--r--tools.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools.go b/tools.go
index e84439f..7a5072b 100644
--- a/tools.go
+++ b/tools.go
@@ -8,7 +8,6 @@ package tools
import (
_ "github.com/client9/misspell/cmd/misspell"
_ "github.com/wadey/gocovmerge"
- _ "golang.org/x/lint/golint"
_ "golang.org/x/tools/cmd/goimports"
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
_ "honnef.co/go/tools/cmd/staticcheck"