ci: define problem matcher for tasks

This commit is contained in:
Adrien Allard 2024-06-10 11:53:27 +02:00
parent b6c24b524e
commit 03cfda223e
1 changed files with 4 additions and 2 deletions

6
.vscode/tasks.json vendored
View File

@ -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": []
}
]
}