diff options
author | Sam Potts <sam@potts.es> | 2020-02-09 21:53:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-09 21:53:24 +0000 |
commit | 8c44425665e4f1cd4fb3fa8593e960d5a518147b (patch) | |
tree | 7d7d3eb58ab402a204b5a81c3daead4fd695ade6 /plyr.code-workspace | |
parent | b2ac730572ad81aa9755e8b7852c53ceba0e8e9f (diff) | |
parent | 93e3f8946a0bcbca27912658d82930e4a5deb2b8 (diff) | |
download | plyr-8c44425665e4f1cd4fb3fa8593e960d5a518147b.tar.lz plyr-8c44425665e4f1cd4fb3fa8593e960d5a518147b.tar.xz plyr-8c44425665e4f1cd4fb3fa8593e960d5a518147b.zip |
Merge pull request #1679 from sampotts/develop
3.5.7
Diffstat (limited to 'plyr.code-workspace')
-rw-r--r-- | plyr.code-workspace | 17 |
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 + } } } |