mirror of
https://github.com/ludeeus/action-shellcheck.git
synced 2025-01-18 17:41:58 +01:00
33 lines
676 B
JSON
33 lines
676 B
JSON
{
|
|
"problemMatcher": [
|
|
{
|
|
"owner": "shellcheck-gcc",
|
|
"pattern": [
|
|
{
|
|
"regexp": "^\\.?\\/?(.+):(\\d+):(\\d+):\\s(warning|error):\\s(.*)\\s\\[(SC\\d+)\\]$",
|
|
"file": 1,
|
|
"line": 2,
|
|
"column": 3,
|
|
"severity": 4,
|
|
"message": 5,
|
|
"code": 6
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"owner": "shellcheck-gcc-notice",
|
|
"severity": "notice",
|
|
"pattern": [
|
|
{
|
|
"regexp": "^\\.?\\/?(.+):(\\d+):(\\d+):\\s(note):\\s(.*)\\s\\[(SC\\d+)\\]$",
|
|
"file": 1,
|
|
"line": 2,
|
|
"column": 3,
|
|
"message": 5,
|
|
"code": 6
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|