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

// Disable SA5008 because cmd packages has a duplicate "choice" tag
//go:generate go run honnef.co/go/tools/cmd/staticcheck -checks inherit,-SA5008 ./...

package tools

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