github.com/opentofu/opentofu@v1.7.1/.copywrite.hcl (about)

     1  schema_version = 1
     2  
     3  project {
     4    license        = "MPL-2.0"
     5    copyright_year = 2014
     6  
     7    # (OPTIONAL) Represents the copyright holder used in all statements
     8    # Default: HashiCorp, Inc.
     9      copyright_holder = "The OpenTofu Authors\nSPDX-License-Identifier: MPL-2.0\nCopyright (c) 2023 HashiCorp, Inc."
    10  
    11    # (OPTIONAL) A list of globs that should not have copyright/license headers.
    12    # Supports doublestar glob patterns for more flexibility in defining which
    13    # files or folders should be ignored
    14    header_ignore = [
    15      "**/*.tf",
    16      "**/testdata/**",
    17      "**/*.pb.go",
    18      "**/*_string.go",
    19      "**/mock*.go",
    20    ]
    21  }