Skip to content

Commit

Permalink
pmd: Broaden supported supported output formats (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
illicitonion committed Sep 14, 2023
1 parent d324a71 commit e384e30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion java/private/pmd_ruleset.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ pmd_ruleset = rule(
"format": attr.string(
doc = "Generate report in the given format. One of html, text, or xml (default is xml)",
default = "xml",
values = ["html", "text", "xml"],
# Per https://pmd.github.io/pmd/pmd_userdocs_report_formats.html
values = ["codeclimate", "emacs", "html", "sarif", "csv", "ideaj", "json", "summaryhtml", "text", "textcolor", "textpad", "vbhtml", "xml", "xslt", "yahtml"],
),
"rulesets": attr.label_list(
doc = "Use these rulesets.",
Expand Down

0 comments on commit e384e30

Please sign in to comment.