forked from hashicorp/terraform-provider-google
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.copywrite.hcl
29 lines (26 loc) · 1.02 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
schema_version = 1
project {
license = "MPL-2.0"
copyright_year = 2017
# (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 = [
# Some ignores here are not strictly needed, but protects us if we change the types of files we put in those folders
# See here for file extensions altered by copywrite CLI (all other extensions are ignored)
# https://github.com/hashicorp/copywrite/blob/4af928579f5aa8f1dece9de1bb3098218903053d/addlicense/main.go#L357-L394
".github/**",
".release/**",
".changelog/**",
"examples/**",
"scripts/**",
"google/**/test-fixtures/**",
"META.d/*.yml",
"META.d/*.yaml",
".golangci.yml",
".goreleaser.yml",
]
# (OPTIONAL) Links to an upstream repo for determining repo relationships
# This is for special cases and should not normally be set.
upstream = "GoogleCloudPlatform/magic-modules"
}