From 03cfda223e687ca8e14e5ca8f9ebf15a9e6d82df Mon Sep 17 00:00:00 2001 From: Adrien Allard Date: Mon, 10 Jun 2024 11:53:27 +0200 Subject: [PATCH] ci: define problem matcher for tasks --- .vscode/tasks.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index da2850e..7719266 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -6,7 +6,8 @@ { "label": "Start dev server", "type": "shell", - "command": "browser-sync start --server build/ --watch" + "command": "browser-sync start --server build/ --watch", + "problemMatcher": [] }, { "label": "Build", @@ -17,7 +18,8 @@ { "label": "Extract localization messages", "type": "shell", - "command": "nox -R -s extract_messages" + "command": "nox -R -s extract_messages", + "problemMatcher": [] } ] }