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

//go:generate go run honnef.co/go/tools/cmd/staticcheck -checks inherit,-SA1019 ./...

package tools

import (
	_ "honnef.co/go/tools/cmd/staticcheck"
)