Improve VS Code integration

This commit is contained in:
Andras Schmelczer 2022-09-21 23:14:44 +02:00
parent 84e2a52640
commit 593e75a5d3
No known key found for this signature in database
GPG key ID: 0EA1BC97D0AB076E
2 changed files with 22 additions and 1 deletions

16
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,16 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Format and lint",
"type": "shell",
"command": "npm run lint",
"group": "test",
"presentation": {
"reveal": "always",
"showReuseMessage": false,
"panel": "shared"
}
}
]
}