Skip to content

Commit e384e30

Browse files
authored
pmd: Broaden supported supported output formats (#208)
1 parent d324a71 commit e384e30

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

java/private/pmd_ruleset.bzl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ pmd_ruleset = rule(
7373
"format": attr.string(
7474
doc = "Generate report in the given format. One of html, text, or xml (default is xml)",
7575
default = "xml",
76-
values = ["html", "text", "xml"],
76+
# Per https://pmd.github.io/pmd/pmd_userdocs_report_formats.html
77+
values = ["codeclimate", "emacs", "html", "sarif", "csv", "ideaj", "json", "summaryhtml", "text", "textcolor", "textpad", "vbhtml", "xml", "xslt", "yahtml"],
7778
),
7879
"rulesets": attr.label_list(
7980
doc = "Use these rulesets.",

0 commit comments

Comments
 (0)