aboutsummaryrefslogtreecommitdiff
path: root/test/tools/tools.go
blob: 5bd1183a5e56cd2190f42099249a23c670e3859b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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"
)