Files
kustomize/hack/tools.go
2021-02-24 17:37:16 -08:00

13 lines
376 B
Go

// +build tools
// This package imports things required by build scripts, to force `go mod` to see them as dependencies
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
package hack
import (
// for code generation
_ "golang.org/x/tools/cmd/stringer"
// for lint checks
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
)