github.com/fastly/go-fastly/v6@v6.8.0/tools/tools.go (about) 1 //go:build tools 2 // +build tools 3 4 // This follows the agreed-upon current best approach for adding developer tooling to your Module. 5 // 6 // For more details, refer to this section in the Go Wiki: 7 // https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module 8 9 package tools 10 11 import ( 12 _ "golang.org/x/tools/cmd/goimports" 13 _ "honnef.co/go/tools/cmd/staticcheck" 14 )