Files
kustomize/tools/tools.go
Ian Howell aa342deff7 Pin tool versions using go modules
This pins down the versions of various tools used in the building,
testing, and linting of kustomize. This will provide more consistency
across contributors' and travis' environments.
2019-09-25 15:27:47 -05:00

10 lines
204 B
Go

// +build tools
package tools
import (
// These imports are all tools used in the building and testing process
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "github.com/monopole/mdrip"
)