block-sdk/tools/tools.go
Alex Johnson 0612051d51
chore: add govulncheck (#316)
* import

* add target

* workflow

* remove parallel

* fix with dummy
2023-12-20 14:52:33 -05:00

19 lines
456 B
Go

//go:build tools
// +build tools
package tools
// Manage tool dependencies via go.mod.
//
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
// https://github.com/golang/go/issues/25922
//nolint:all
import (
_ "github.com/client9/misspell/cmd/misspell"
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "golang.org/x/tools/cmd/goimports"
_ "golang.org/x/vuln/cmd/govulncheck"
_ "mvdan.cc/gofumpt"
)