* GitHub Actions: Add yamllint problem matcher
* Introduce YAML issue to test problem matcher
* Revert "Introduce YAML issue to test problem matcher"
This reverts commit fa88c9484e
.
22 lines
419 B
JSON
22 lines
419 B
JSON
{
|
|
"problemMatcher": [
|
|
{
|
|
"owner": "yamllint",
|
|
"pattern": [
|
|
{
|
|
"regexp": "^(.*\\.ya?ml)$",
|
|
"file": 1
|
|
},
|
|
{
|
|
"regexp": "^\\s{2}(\\d+):(\\d+)\\s+(error|warning)\\s+(.*?)\\s+\\((.*)\\)$",
|
|
"line": 1,
|
|
"column": 2,
|
|
"severity": 3,
|
|
"message": 4,
|
|
"code": 5,
|
|
"loop": true
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|