mirror of
https://github.com/hashicorp/packer.git
synced 2026-05-28 04:35:38 -04:00
copywrite: setup configuration for licensing
Copywrite is a tool developed internally at Hashicorp in order to maintain our source code up-to-date in terms of license headers. Since this will be monitored soon, we are preparing for this by adding the configuration for files to ignore.
This commit is contained in:
parent
b278e5e2d4
commit
f84c4e6182
1 changed files with 13 additions and 0 deletions
13
.copywrite.hcl
Normal file
13
.copywrite.hcl
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
project {
|
||||
license = "MPL-2.0"
|
||||
copyright_year = 2013
|
||||
header_ignore = [
|
||||
"*.hcl2spec.go", # generated code specs, since they'll be wiped out until we support adding the headers at generation-time
|
||||
"hcl2template/testdata/**",
|
||||
"test/**",
|
||||
"**/test-fixtures/**",
|
||||
"examples/**",
|
||||
"hcl2template/fixtures/**",
|
||||
"website/**" # candidates for copyright are coming from external sources, so we should not handle those in Packer
|
||||
]
|
||||
}
|
||||
Loading…
Reference in a new issue