Created
September 30, 2020 09:49
-
-
Save gevera/6fecd28072bced3b65e1bfb1f72018c3 to your computer and use it in GitHub Desktop.
VS Code Settings Svelte without CSS intelisence
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"workbench.iconTheme": "vscode-icons", | |
"window.zoomLevel": 1, | |
"workbench.colorTheme": "Monokai", | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"cSpell.userWords": [ | |
"bootcamp", | |
"bootcamps" | |
], | |
"workbench.editor.labelFormat": "short", | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"[typescript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[scss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"rest-client.rememberCookiesForSubsequentRequests": false, | |
"[css]": { | |
"editor.defaultFormatter": "HookyQR.beautify" | |
}, | |
"[svelte]": { | |
"editor.suggest.showClasses": true, | |
"editor.defaultFormatter": "svelte.svelte-vscode" | |
}, | |
"css.remoteStyleSheets": [ | |
"https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css", | |
"https://unpkg.com/spectre.css/dist/spectre.min.css" | |
], | |
"html-css-class-completion.enableEmmetSupport": true, | |
"html-css-class-completion.includeGlobPattern": "**/*.{css,html,svelte}", | |
"emmet.includeLanguages": { | |
"[svelte]" : "html" | |
}, | |
"svelte.plugin.css.completions.enable": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment