opentofu/.copywrite.hcl
Alisdair McDiarmid 30a08d08c8 Configure copywrite to ignore more generated code
stringer and mockgen added to the list.
2023-04-26 16:47:54 -04:00

18 lines
401 B
HCL

schema_version = 1
project {
license = "MPL-2.0"
copyright_year = 2014
# (OPTIONAL) A list of globs that should not have copyright/license headers.
# Supports doublestar glob patterns for more flexibility in defining which
# files or folders should be ignored
header_ignore = [
"**/*.tf",
"**/testdata/**",
"**/*.pb.go",
"**/*_string.go",
"**/mock*.go",
]
}