13 lines
306 B
Go
13 lines
306 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
// This file uses the recommended method for tracking developer tools in a Go
|
|
// module.
|
|
//
|
|
// REF: https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
)
|