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.
This commit is contained in:
Ian Howell
2019-09-25 12:02:52 -05:00
parent 10786ec0a7
commit aa342deff7
4 changed files with 206 additions and 24 deletions

9
tools/tools.go Normal file
View File

@@ -0,0 +1,9 @@
// +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"
)