
This uses the current master commit of golangci-lint. We will want to update to use a tagged version as soon as the golangci-lint team pushes a new tag
10 lines
200 B
Go
10 lines
200 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"
|
|
_ "k8s.io/code-generator"
|
|
)
|