forked from hashicorp/waypoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.copywrite.hcl
50 lines (46 loc) · 1.45 KB
/
.copywrite.hcl
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# (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 year that the project initially began
# Default: <the year the repo was first created>
copyright_year = 2020
# (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 = [
"**_test.go",
"**/testdata/**",
"test-e2e/**",
"ui/tests/**",
"ui/mirage/**",
".circleci/**",
".github/**",
".release/**",
".vscode/**",
"ci/**",
"builtin/**/parameters.hcl",
"builtin/**/outputs.hcl",
"**/node_modules/**",
"website/scripts/**",
"thirdparty/**",
"website/.next/**",
"website/.vscode/**",
"website/scripts/**",
"website/website-preview**",
// packages copied from other sources
"internal/pkg/spinner/**",
"ui/lib/api-common-protos/**",
"ui/lib/grpc-web/**",
"internal/pkg/jsonpb/**",
"internal/pkg/defaults/**",
"internal/pkg/copy/**",
"website/public/ie-custom-properties.js",
]
}
# More information about configuration options is available in [the documentation](https://github.com/hashicorp/copywrite#config-structure).