Permalink
Cannot retrieve contributors at this time
14 lines (11 sloc)
418 Bytes
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//go:build tools | |
// +build tools | |
package tools | |
// This file tracks some external tools we use during development and release | |
// processes. These are not used at runtime but having them here allows the | |
// Go toolchain to see that we need to include them in go.mod and go.sum. | |
import ( | |
_ "github.com/nishanths/exhaustive/cmd/exhaustive" | |
_ "golang.org/x/tools/cmd/stringer" | |
_ "honnef.co/go/tools/cmd/staticcheck" | |
) |