Skip to content

Commit

Permalink
Add style as possible severity
Browse files Browse the repository at this point in the history
  • Loading branch information
elupus committed Jan 17, 2023
1 parent ff7c965 commit c3a4e4f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
public class CodeCheckerParser extends LookaheadParser {
private static final long serialVersionUID = -3015592762345283582L;
private static final String CODE_CHECKER_DEFECT_PATTERN =
"^\\[(?<severity>UNSPECIFIED|CRITICAL|HIGH|MEDIUM|LOW)\\] (?<path>.+):(?<line>\\d+):(?<column>\\d+): (?<message>.*?) \\[(?<category>[^\\s]*?)\\]$";
"^\\[(?<severity>UNSPECIFIED|STYLE|CRITICAL|HIGH|MEDIUM|LOW)\\] (?<path>.+):(?<line>\\d+):(?<column>\\d+): (?<message>.*?) \\[(?<category>[^\\s]*?)\\]$";

/**
* Creates a new instance of {@link CodeCheckerParser}.
Expand Down

0 comments on commit c3a4e4f

Please sign in to comment.