Files
ruff/.github/matchers/check.json
T
Kevin Stillhammer 35619fdbcc Add problem matchers (#26)
Closes: #12
2024-12-08 12:17:50 +01:00

18 lines
291 B
JSON

{
"problemMatcher": [
{
"owner": "ruff-check",
"pattern": [
{
"regexp": "^Error: (.*):(\\d+):(\\d+): (\\w+) (.*)$",
"file": 1,
"line": 2,
"column": 3,
"code": 4,
"message": 5
}
]
}
]
}