Skip to content

Commit

Permalink
🐛 Fix GitLab/BitBucket reports with baseline and no new problems (QD-…
Browse files Browse the repository at this point in the history
…10038)
  • Loading branch information
andreiiur authored and tiulpin committed Oct 10, 2024
1 parent 1a82a02 commit b5eb820
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platform/sarif.go
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,8 @@ func ProcessSarif(sarifPath, analysisId, reportUrl string, printProblems, codeCl
if err != nil {
log.Fatal(err)
}
var codeClimateIssues []CCIssue
var codeInsightIssues []bbapi.ReportAnnotation
var codeClimateIssues = make([]CCIssue, 0)
var codeInsightIssues = make([]bbapi.ReportAnnotation, 0)
rulesDescriptions := make(map[string]string)
if printProblems {
EmptyMessage()
Expand Down

0 comments on commit b5eb820

Please sign in to comment.