mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-18 04:05:21 +00:00
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.
10 lines
204 B
Go
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"
|
|
)
|