mirror of
https://github.com/grafana/tempo.git
synced 2025-03-14 03:06:42 +00:00
* Breadcrumbs for golangci * Include golangci in tools * Use tools image for lint make target * Update changelog
16 lines
416 B
Go
16 lines
416 B
Go
//go:build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
_ "github.com/google/go-jsonnet/cmd/jsonnet"
|
|
_ "github.com/google/go-jsonnet/cmd/jsonnetfmt"
|
|
_ "github.com/grafana/tanka/cmd/tk"
|
|
_ "github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb"
|
|
_ "github.com/psampaz/go-mod-outdated"
|
|
_ "golang.org/x/tools/cmd/goimports"
|
|
_ "gotest.tools/gotestsum"
|
|
_ "mvdan.cc/gofumpt"
|
|
)
|