aboutsummaryrefslogtreecommitdiff
path: root/tools/tools.go
blob: 5cfae35def831e489b065e3037677086aa24078d (plain) (blame)
1
2
3
4
5
6
7
8
9
//go:build tools
// +build tools

package tools

import (
	_ "golang.org/x/lint/golint"
	_ "honnef.co/go/tools/cmd/staticcheck"
)