15 lines
455 B
Go
15 lines
455 B
Go
//go:build tools
|
|
|
|
// tools.go pins tool versions in go.mod so the entire team (and CI) uses
|
|
// the same binary versions. Add any code-generation or static-analysis tool
|
|
// here, then run `make init` to install them.
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/go-delve/delve/cmd/dlv"
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
_ "github.com/securego/gosec/v2/cmd/gosec"
|
|
_ "github.com/vektra/mockery/v2"
|
|
_ "golang.org/x/vuln/cmd/govulncheck"
|
|
)
|