github.com/opentofu/opentofu@v1.7.1/tools.go (about)

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