aboutsummaryrefslogtreecommitdiffstats
path: root/plyr.code-workspace
diff options
context:
space:
mode:
authorSam Potts <sam@potts.es>2020-01-13 15:49:29 +0000
committerSam Potts <sam@potts.es>2020-01-13 15:49:29 +0000
commit4f263ebb1a3406dc2294f99cbc8a047b286dd829 (patch)
tree77cd397716956746cee5aad8f1b8c470ffaca180 /plyr.code-workspace
parentaa51719a5534eced78e9f0f9f90bc5926673e0b5 (diff)
downloadplyr-4f263ebb1a3406dc2294f99cbc8a047b286dd829.tar.lz
plyr-4f263ebb1a3406dc2294f99cbc8a047b286dd829.tar.xz
plyr-4f263ebb1a3406dc2294f99cbc8a047b286dd829.zip
Added local server, package upgrades
Diffstat (limited to 'plyr.code-workspace')
-rw-r--r--plyr.code-workspace17
1 files changed, 12 insertions, 5 deletions
diff --git a/plyr.code-workspace b/plyr.code-workspace
index 06dabaac..bcd26028 100644
--- a/plyr.code-workspace
+++ b/plyr.code-workspace
@@ -9,22 +9,29 @@
"**/node_modules": true,
"**/dist": true
},
+
// Linting
"stylelint.enable": true,
"css.validate": false,
"scss.validate": false,
"javascript.validate.enable": false,
- // Prettier
- "prettier.eslintIntegration": true,
- "prettier.stylelintIntegration": true,
-
// Formatting
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.formatOnSave": true,
// Trim on save
- "files.trimTrailingWhitespace": true
+ "files.trimTrailingWhitespace": true,
+
+ // Special file associations
+ "files.associations": {
+ ".eslintrc": "jsonc"
+ },
+
+ "editor.codeActionsOnSave": {
+ "source.fixAll": true
+ }
}
}