add eslint task definition

This commit is contained in:
Johannes Rieken 2020-01-03 10:34:42 +01:00
parent 125ba4a8a6
commit 186491566a

9
.vscode/tasks.json vendored
View file

@ -82,7 +82,6 @@
"command": "yarn web -- --no-launch",
"label": "Run web",
"isBackground": true,
// This section to make error go away when launching the debug config
"problemMatcher": {
"pattern": {
"regexp": ""
@ -96,5 +95,13 @@
"reveal": "never"
}
},
{
"type": "npm",
"script": "eslint",
"problemMatcher": {
"source": "eslint",
"base": "$eslint-stylish"
}
}
]
}