Skip to content

Commit

Permalink
Replace Checkstyle to SonarLint in HTML report (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
remal authored Oct 1, 2024
1 parent 4b2f22b commit 234b68f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void execute() {

val htmlReportLocation = params.getHtmlReportLocation().getAsFile().getOrNull();
if (htmlReportLocation != null) {
new CheckstyleHtmlIssuesRenderer().renderIssuesToFile(issues, htmlReportLocation);
new CheckstyleHtmlIssuesRenderer("SonarLint").renderIssuesToFile(issues, htmlReportLocation);
}

if (isNotEmpty(issues)) {
Expand Down

0 comments on commit 234b68f

Please sign in to comment.