mirror of
https://github.com/ludeeus/action-shellcheck.git
synced 2024-08-16 10:09:53 +02:00
Updated matchers to account for "./" file prefixes (#42)
Co-authored-by: Joakim Sørensen <hi@ludeeus.dev>
This commit is contained in:
parent
7606914ded
commit
a1080136d9
2 changed files with 2 additions and 2 deletions
2
.github/problem-matcher-gcc.json
vendored
2
.github/problem-matcher-gcc.json
vendored
|
@ -4,7 +4,7 @@
|
|||
"owner": "shellcheck-gcc",
|
||||
"pattern": [
|
||||
{
|
||||
"regexp": "^(.+):(\\d+):(\\d+):\\s(note|warning|error):\\s(.*)\\s\\[(SC\\d+)\\]$",
|
||||
"regexp": "^\\.\\/(.+):(\\d+):(\\d+):\\s(note|warning|error):\\s(.*)\\s\\[(SC\\d+)\\]$",
|
||||
"file": 1,
|
||||
"line": 2,
|
||||
"column": 3,
|
||||
|
|
2
.github/problem-matcher-tty.json
vendored
2
.github/problem-matcher-tty.json
vendored
|
@ -4,7 +4,7 @@
|
|||
"owner": "shellcheck-tty",
|
||||
"pattern": [
|
||||
{
|
||||
"regexp": "^In\\s(.+)\\sline\\s(\\d+):$",
|
||||
"regexp": "^In\\s\\.\\/(.+)\\sline\\s(\\d+):$",
|
||||
"file": 1,
|
||||
"line": 2
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue