From 5ac3650993012476b7cef794d32459810dede7a2 Mon Sep 17 00:00:00 2001 From: Caleb Albers Date: Wed, 30 Nov 2022 12:12:08 -0800 Subject: [PATCH] Create .copywrite.hcl config file 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. --- .copywrite.hcl | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .copywrite.hcl diff --git a/.copywrite.hcl b/.copywrite.hcl new file mode 100644 index 0000000..5e1977c --- /dev/null +++ b/.copywrite.hcl @@ -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 = [] +}