mirror of
https://github.com/gojp/goreportcard.git
synced 2026-01-29 06:49:05 +08:00
13 lines
274 B
Go
13 lines
274 B
Go
// +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"
|
|
)
|