github.com/kevinklinger/open_terraform@v1.3.6/tools.go (about)

     1  //go:build tools
     2  // +build tools
     3  
     4  package tools
     5  
     6  // This file tracks some external tools we use during development and release
     7  // processes. These are not used at runtime but having them here allows the
     8  // Go toolchain to see that we need to include them in go.mod and go.sum.
     9  
    10  import (
    11  	_ "github.com/nishanths/exhaustive/cmd/exhaustive"
    12  	_ "golang.org/x/tools/cmd/stringer"
    13  	_ "honnef.co/go/tools/cmd/staticcheck"
    14  )