Skip to content

Commit 9925dba

Browse files
fbaeuerle4og
authored andcommitted
Add copyright checker bazel targets.
Add targets from score toolings copyright checker in order to allow checking for correct copyright headers.
1 parent 1daff2a commit 9925dba

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

BUILD

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,26 @@
1212
# *******************************************************************************
1313

1414
load("@score_docs_as_code//:docs.bzl", "docs")
15+
load("@score_tooling//:defs.bzl", "copyright_checker")
1516

1617
docs(
1718
data = [
1819
"@score_process//:needs_json",
1920
],
2021
source_dir = "docs",
2122
)
23+
24+
copyright_checker(
25+
name = "copyright",
26+
srcs = [
27+
".github",
28+
"bazel",
29+
"docs",
30+
"score",
31+
"//:BUILD",
32+
"//:MODULE.bazel",
33+
],
34+
config = "@score_tooling//cr_checker/resources:config",
35+
template = "@score_tooling//cr_checker/resources:templates",
36+
visibility = ["//visibility:public"],
37+
)

0 commit comments

Comments
 (0)