action-shellcheck/.github/problem-matcher-tty.json

24 lines
455 B
JSON
Raw Normal View History

{
"problemMatcher": [
{
"owner": "shellcheck-tty",
"pattern": [
{
"regexp": "^In\\s\\.\\/(.+)\\sline\\s(\\d+):$",
"file": 1,
"line": 2
},
{
"regexp": ".*"
},
{
"regexp": "(SC\\d+):\\s(.+)$",
"code": 1,
2021-03-31 15:55:33 +02:00
"message": 2,
"loop": true
}
2021-03-31 15:55:33 +02:00
]
}
]
2021-03-31 15:55:33 +02:00
}