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

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

package tools

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