Files
goreportcard/tools/tools.go
Shawn Smith bd1dc0715a fix gofmt -s
2021-11-26 13:13:29 +09:00

14 lines
291 B
Go

//go:build tools
// +build tools
package tools
import (
_ "github.com/alecthomas/gocyclo"
_ "github.com/alecthomas/gometalinter"
_ "github.com/client9/misspell/cmd/misspell"
_ "github.com/gordonklaus/ineffassign"
_ "golang.org/x/lint/golint"
_ "honnef.co/go/tools/cmd/staticcheck"
)