diff options
Diffstat (limited to 'test/tools/tools.go')
-rw-r--r-- | test/tools/tools.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/tools/tools.go b/test/tools/tools.go new file mode 100644 index 000000000..5bd1183a5 --- /dev/null +++ b/test/tools/tools.go @@ -0,0 +1,13 @@ +//go:build tools +// +build tools + +package tools + +// Importing the packages here will allow to vendor those via +// `go mod vendor`. + +import ( + _ "github.com/cpuguy83/go-md2man/v2" + _ "github.com/vbatts/git-validation" + _ "golang.org/x/tools/cmd/goimports" +) |