aboutsummaryrefslogtreecommitdiff
path: root/tools.go
diff options
context:
space:
mode:
authorJoseph Richey <joerichey@google.com>2022-04-09 01:44:51 -0700
committerGitHub <noreply@github.com>2022-04-09 01:44:51 -0700
commit53dc5f37339f40e78cd0e91b358322cc9e589185 (patch)
tree68eb53440456ff6cc9c6ecef8b0567510de5310a /tools.go
parentce8a5583c1cc2327cf65a048cfd1083225dad50e (diff)
parentba0a96b04b08f8c8b533d7dab7e6326c5ecd6ace (diff)
Merge pull request #354 from google/staticcheck-fix
Upgrade dependencies to latest version
Diffstat (limited to 'tools.go')
-rw-r--r--tools.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools.go b/tools.go
index d34637e..e84439f 100644
--- a/tools.go
+++ b/tools.go
@@ -1,13 +1,15 @@
+//go:build tools
// +build tools
+
// Never compiled, just used to manage tool dependencies
package tools
import (
_ "github.com/client9/misspell/cmd/misspell"
- _ "github.com/golang/protobuf/protoc-gen-go"
_ "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"
)