action-shellcheck/.github/problem-matcher-tty.json
Phred Lane a1080136d9
Updated matchers to account for "./" file prefixes (#42)
Co-authored-by: Joakim Sørensen <hi@ludeeus.dev>
2021-11-14 10:10:45 +01:00

24 lines
455 B
JSON

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