* GitHub Actions: Add pylint problem matcher * Create a pylint issue to test * Create another pylint issue to test * Register problem matcher in same step * Apply possible workaround * Disable problem matcher to catch raw output * Trying again with new CI containers * Extend problem matcher with errors and warnings * Improve matching, keep error code in message * Revert "Create another pylint issue to test" This reverts commita90e23656e
. * Revert "Create a pylint issue to test" This reverts commit9dd5148eb4
. * Fix stable name in job description
32 lines
624 B
JSON
32 lines
624 B
JSON
{
|
|
"problemMatcher": [
|
|
{
|
|
"owner": "pylint-error",
|
|
"severity": "error",
|
|
"pattern": [
|
|
{
|
|
"regexp": "^(.+):(\\d+):(\\d+):\\s(([EF]\\d{4}):\\s.+)$",
|
|
"file": 1,
|
|
"line": 2,
|
|
"column": 3,
|
|
"message": 4,
|
|
"code": 5
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"owner": "pylint-warning",
|
|
"severity": "warning",
|
|
"pattern": [
|
|
{
|
|
"regexp": "^(.+):(\\d+):(\\d+):\\s(([CRW]\\d{4}):\\s.+)$",
|
|
"file": 1,
|
|
"line": 2,
|
|
"column": 3,
|
|
"message": 4,
|
|
"code": 5
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|