-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.copywrite.hcl
More file actions
33 lines (28 loc) · 1.01 KB
/
Copy path.copywrite.hcl
File metadata and controls
33 lines (28 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# (OPTIONAL) Overrides the copywrite config schema version
# Default: 1
schema_version = 1
project {
# (OPTIONAL) SPDX-compatible license identifier
# Leave blank if you don't wish to license the project
# Default: "MPL-2.0"
license = "MPL-2.0"
# (OPTIONAL) Represents the copyright holder used in all statements
# Default: HashiCorp, Inc.
copyright_holder = "Marcelo Almeida"
# (OPTIONAL) Represents the year that the project initially began
# Default: <the year the repo was first created>
copyright_year = 2025
# (OPTIONAL) A list of globs that should not have copyright or license headers .
# Supports doublestar glob patterns for more flexibility in defining which
# files or folders should be ignored
# Default: []
header_ignore = [
"vendor/**",
"**autogen**",
"examples/**",
]
# (OPTIONAL) Links to an upstream repo for determining repo relationships
# This is for special cases and should not normally be set.
# Default: ""
# upstream = "hashicorp/<REPONAME>"
}