blob: e84439f373062e0efc75f32f01c7c03b5aca7128 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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/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"
)
|