-
Notifications
You must be signed in to change notification settings - Fork 44
/
.copywrite.hcl
38 lines (36 loc) · 1.32 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
schema_version = 1
project {
license = "MPL-2.0"
copyright_year = 2021
# (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 = [
# Generic configuration files
"**/*.yml",
"**/*.cjs",
"**/*rc.js",
# Distribution files
"**/dist/**",
# Type declarations
"**/*.d.ts",
# SVG icons packed as `tsx` files
"packages/flight-icons/svg-react/*",
# Handlebars components sensitive to white-space
"packages/components/src/components/hds/interactive/*.hbs",
"packages/components/src/components/hds/link/*.hbs",
# Reworked from `field-guide` and `broccoli-static-site-json`
"website/app/components/dynamic-template-error.hbs",
"website/app/components/dynamic-template-error.js",
"website/app/components/dynamic-template.hbs",
"website/app/components/dynamic-template.js",
"website/app/initializers/showdown-extensions.js",
"website/app/routes/application.js",
"website/app/routes/show.js",
"website/app/controllers/show.js",
"website/app/templates/show.hbs",
"website/lib/markdown/index.js",
"website/lib/markdown/markdown-to-jsonapi.js",
"website/lib/markdown/table-of-contents.js",
]
}