Skip to content
Snippets Groups Projects
Unverified Commit 80c108c2 authored by Franck Nijhof's avatar Franck Nijhof Committed by GitHub
Browse files

Fix flake8 problem matcher to handle fatals as errors (#37536)

parent 53545c98
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
"severity": "error", "severity": "error",
"pattern": [ "pattern": [
{ {
"regexp": "^(.*):(\\d+):(\\d+):\\s(E\\d{3}\\s.*)$", "regexp": "^(.*):(\\d+):(\\d+):\\s([EF]\\d{3}\\s.*)$",
"file": 1, "file": 1,
"line": 2, "line": 2,
"column": 3, "column": 3,
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
"severity": "warning", "severity": "warning",
"pattern": [ "pattern": [
{ {
"regexp": "^(.*):(\\d+):(\\d+):\\s([CDFNW]\\d{3}\\s.*)$", "regexp": "^(.*):(\\d+):(\\d+):\\s([CDNW]\\d{3}\\s.*)$",
"file": 1, "file": 1,
"line": 2, "line": 2,
"column": 3, "column": 3,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment