From c9c6dd18524ae394e2e4276938d5c8c05c31291d Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Thu, 22 Jan 2026 16:31:02 +0100 Subject: [PATCH] fix: remove copywrite --- .copywrite.hcl | 24 ------------------------ tools/copywrite.go | 12 ------------ 2 files changed, 36 deletions(-) delete mode 100644 .copywrite.hcl delete mode 100644 tools/copywrite.go diff --git a/.copywrite.hcl b/.copywrite.hcl deleted file mode 100644 index b26d46f2..00000000 --- a/.copywrite.hcl +++ /dev/null @@ -1,24 +0,0 @@ -# NOTE: This file is for HashiCorp specific licensing automation and can be deleted after creating a new repo with this template. -schema_version = 1 - -project { - license = "Apache-2.0" - copyright_year = 2025 - - header_ignore = [ - # internal catalog metadata (prose) - "META.d/**/*.yaml", - - # examples used within documentation (prose) - "examples/**", - - # GitHub issue template configuration - ".github/ISSUE_TEMPLATE/*.yml", - - # golangci-lint tooling configuration - ".golangci.yml", - - # GoReleaser tooling configuration - ".goreleaser.yml", - ] -} diff --git a/tools/copywrite.go b/tools/copywrite.go deleted file mode 100644 index 92dbb3c6..00000000 --- a/tools/copywrite.go +++ /dev/null @@ -1,12 +0,0 @@ -// SPDX-License-Identifier: MPL-2.0 - -//go:build generate - -package tools - -import ( - // copywrite header generation - _ "github.com/hashicorp/copywrite" -) - -//go:generate go run github.com/hashicorp/copywrite headers -d .. --config ../.copywrite.hcl