1
0
Fork 0
mirror of https://github.com/ludeeus/action-shellcheck.git synced 2024-08-16 10:09:53 +02:00
shellcheck/.github/problem-matcher-gcc.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

18 lines
355 B
JSON

{
"problemMatcher": [
{
"owner": "shellcheck-gcc",
"pattern": [
{
"regexp": "^\\.\\/(.+):(\\d+):(\\d+):\\s(note|warning|error):\\s(.*)\\s\\[(SC\\d+)\\]$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5,
"code": 6
}
]
}
]
}