mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
e09bad76ff
For now, only check the JSON views package, since this was the instance that most recently tripped us up. There are a few dozen failures elsewhere in Terraform which would need to be addressed before expanding this to other packages.
16 lines
371 B
Go
16 lines
371 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/golang/mock/mockgen"
|
|
_ "github.com/golang/protobuf/protoc-gen-go"
|
|
_ "github.com/mitchellh/gox"
|
|
_ "github.com/nishanths/exhaustive"
|
|
_ "golang.org/x/tools/cmd/cover"
|
|
_ "golang.org/x/tools/cmd/stringer"
|
|
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
|
)
|