mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-18 07:05:00 +00:00
10 lines
295 B
Go
10 lines
295 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 (
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
)
|