mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-18 06:25:20 +00:00
20 lines
479 B
Go
20 lines
479 B
Go
// +build tools
|
|
|
|
// Copyright 2019 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// This file exists to trigger installs of the given tools.
|
|
|
|
package tools
|
|
|
|
import (
|
|
// for code generation
|
|
_ "golang.org/x/tools/cmd/stringer"
|
|
// for lint checks
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
// for integration tests driven by the examples
|
|
_ "github.com/monopole/mdrip"
|
|
// TODO: See comment in Makefile.
|
|
//_ "sigs.k8s.io/kustomize/pluginator"
|
|
)
|