From 971cd3ef0978161080dab802ee213adfbc24ec23 Mon Sep 17 00:00:00 2001 From: George MacKerron Date: Wed, 7 Oct 2020 10:22:47 +0100 Subject: [PATCH] Added ESLint task for VS Code --- .vscode/tasks.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..6d7f70c --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,14 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "lint", + "problemMatcher": [ + "$eslint-stylish" + ], + "label": "npm: lint", + "detail": "eslint --ext .ts ." + } + ] +} \ No newline at end of file