github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/tools.go (about)

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