forked from hashicorp/consul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.copywrite.hcl
39 lines (32 loc) · 1.24 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
schema_version = 1
project {
license = "BUSL-1.1"
copyright_year = 2024
# (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 = [
# Forked and modified UI libs
"ui/packages/consul-ui/app/utils/dom/event-target/**",
"ui/packages/consul-ui/lib/rehype-prism/**",
"ui/packages/consul-ui/lib/block-slots/**",
# UI file that do not render properly with copyright headers
"ui/packages/consul-ui/app/components/brand-loader/enterprise.hbs",
"ui/packages/consul-ui/app/components/brand-loader/index.hbs",
# ignore specific test data files
"agent/uiserver/testdata/**",
"internal/resourcehcl/testdata/**",
# generated files
"agent/structs/structs.deepcopy.go",
"agent/proxycfg/proxycfg.deepcopy.go",
"agent/grpc-middleware/rate_limit_mappings.gen.go",
"agent/uiserver/dist/**",
# ignoring policy embedded files
"agent/structs/acltemplatedpolicy/policies/ce/**",
# licensed under MPL - ignoring for now until the copywrite tool can support
# multiple licenses per repo.
"sdk/**",
"api/**",
"proto-public/**",
]
}