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

package main

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