We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0254e85 commit 0f0a476Copy full SHA for 0f0a476
3 files changed
.gitignore
@@ -1,6 +1,7 @@
1
# Editor directories and files
2
.vscode/*
3
!.vscode/extensions.json
4
+!.vscode/tasks.json
5
.idea
6
.DS_Store
7
*.suo
.vscode/extensions.json
@@ -0,0 +1,12 @@
+{
+ "recommendations": [
+ "dbaeumer.vscode-eslint",
+ "esbenp.prettier-vscode",
+ "bierner.lit-html",
+ "bashmish.es6-string-css",
+ "streetsidesoftware.code-spell-checker",
8
+ "runem.lit-plugin",
9
+ "ryanluker.vscode-coverage-gutters"
10
+ ]
11
+ }
12
+
.vscode/tasks.json
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "label": "Watch coverage on open",
+ "command": "${command:coverage-gutters.watchCoverageAndVisibleEditors}",
+ "runOptions": {
+ "runOn": "folderOpen"
+}
0 commit comments