Skip to content

Commit 1972266

Browse files
committed
feat [task-08]: Update severity mapping
1 parent 7d40af3 commit 1972266

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • tools/report-converter/codechecker_report_converter/report/parser

tools/report-converter/codechecker_report_converter/report/parser/sarif.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
# Mapping from SARIF level (§3.27.10) to CodeChecker severity.
3333
# SARIF levels: "error", "warning", "note", "none"
3434
SARIF_LEVEL_TO_SEVERITY: Dict[str, str] = {
35-
"error": "HIGH",
36-
"warning": "MEDIUM",
35+
"error": "CRITICAL",
36+
"warning": "HIGH",
3737
"note": "LOW",
3838
}
3939

0 commit comments

Comments
 (0)