25 lines
592 B
Go
25 lines
592 B
Go
// +build tools
|
|
|
|
/*
|
|
Copyright IBM Corp. All Rights Reserved.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/AlekSi/gocov-xml"
|
|
_ "github.com/axw/gocov/gocov"
|
|
_ "github.com/client9/misspell/cmd/misspell"
|
|
_ "github.com/go-swagger/go-swagger/cmd/swagger"
|
|
_ "github.com/golang/protobuf/protoc-gen-go"
|
|
_ "github.com/maxbrunsfeld/counterfeiter/v6"
|
|
_ "github.com/onsi/ginkgo/v2/ginkgo"
|
|
_ "github.com/vektra/mockery/cmd/mockery"
|
|
_ "golang.org/x/lint/golint"
|
|
_ "golang.org/x/tools/cmd/goimports"
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
|
_ "mvdan.cc/gofumpt"
|
|
)
|