Skip to content

Commit

Permalink
Create .copywrite.hcl config file
Browse files Browse the repository at this point in the history
This sets the baseline config for what the `copywrite` tooling needs to add copyright and license headers. Additionally, this also sets the stage for using the `header_ignore` escape hatch if needed.
  • Loading branch information
CalebAlbers committed Nov 30, 2022
1 parent b690147 commit 5ac3650
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .copywrite.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
schema_version = 1

project {
license = "MPL-2.0"
copyright_year = 2022

# (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 (e.g., "vendors/**")
header_ignore = []
}

0 comments on commit 5ac3650

Please sign in to comment.