github.com/fastly/go-fastly@v1.18.0/tools/tools.go (about)

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