blob: d34637e925fdcf9e89c0939e6c0767dfeae0ed40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// +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"
_ "honnef.co/go/tools/cmd/staticcheck"
)
|