weblate/.github/matchers/mypy.json
Michal Čihař 9cd5a231b6 chore(ci): filter mypy for changed files only
There are too many errors for now so filter pull request output to changed files only.
2024-10-04 15:29:56 +02:00

18 lines
333 B
JSON

{
"problemMatcher": [
{
"owner": "mypy",
"pattern": [
{
"regexp": "^([^:]*):(\\d+):(?:(\\d+):)? ([^:]*): (.*?)(?: \\[(\\S+)\\])?$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5,
"code": 6
}
]
}
]
}