[CI/Build] Add error matching for ruff output (#9513)

Signed-off-by: Russell Bryant <rbryant@redhat.com>
This commit is contained in:
Russell Bryant
2024-10-19 05:42:20 +00:00
committed by GitHub
parent 82c25151ec
commit dfd951ed9b
2 changed files with 19 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"problemMatcher": [
{
"owner": "ruff",
"pattern": [
{
"regexp": "^(.+?):(\\d+):(\\d+): (\\w+): (.+)$",
"file": 1,
"line": 2,
"column": 3,
"code": 4,
"message": 5
}
]
}
]
}