diff --git a/.github/shellcheck-tty.json b/.github/shellcheck-tty.json index 711503d..6021578 100644 --- a/.github/shellcheck-tty.json +++ b/.github/shellcheck-tty.json @@ -12,12 +12,13 @@ "regexp": ".*" }, { - "regexp": "SC(\\d+):\\s(.+)$", + "regexp": "SC(\\d+)\\s\\((note|warning|error)\\):\\s(.+)$", "code": 1, - "message": 2, + "severity": 2, + "message": 3, "loop": true } - ] + ] } ] } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index dcd0a4b..84e8a43 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -42,9 +42,10 @@ "regexp": ".*" }, { - "regexp": "SC(\\d+):\\s(.+)$", + "regexp": "SC(\\d+)\\s\\((note|warning|error)\\):\\s(.+)$", "code": 1, - "message": 2, + "severity": 2, + "message": 3, "loop": true } ]