Created
February 27, 2022 14:19
-
-
Save theClarkSell/2fea56b6cae7d2c0ee5fbac96e738cd8 to your computer and use it in GitHub Desktop.
SvelteKit VSCode Settings
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.rulers": [80], | |
"editor.formatOnSave": true, | |
"prettier.tabWidth": 2, | |
"editor.insertSpaces": false, | |
"editor.tabSize": 2, | |
"editor.snippetSuggestions": "top", | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true | |
}, | |
"workbench.colorCustomizations": { | |
"titleBar.activeForeground": "#000", | |
"titleBar.inactiveForeground": "#000000CC", | |
"titleBar.activeBackground": "#4D51F7", | |
"titleBar.inactiveBackground": "#4D51F7" | |
}, | |
"[svelte]": { | |
"editor.defaultFormatter": "svelte.svelte-vscode" | |
}, | |
"svelte.plugin.svelte.format.config.svelteBracketNewLine": false, | |
"svelte.plugin.svelte.rename.enable": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment