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