Updating VSCode settings file.

This commit is contained in:
Bradley Shellnut 2022-12-27 14:53:10 -08:00
parent 687a10be4e
commit 1283da632e
2 changed files with 148 additions and 81 deletions

View file

@ -1,47 +1,76 @@
{ {
"editor.wordWrap": "bounded", "editor.wordWrap": "bounded",
"javascript.updateImportsOnFileMove.enabled": "always", "editor.bracketPairColorization.enabled": true,
"editor.renderWhitespace": "all", "editor.guides.bracketPairs": "active",
// These are all my auto-save configs "javascript.updateImportsOnFileMove.enabled": "always",
"editor.formatOnSave": true, "editor.renderWhitespace": "all",
// turn it off for JS and JSX, we will do this via eslint // These are all my auto-save configs
"[javascript]": { "editor.formatOnSave": true,
"editor.formatOnSave": false "editor.defaultFormatter": "esbenp.prettier-vscode",
}, // turn it off for JS and JSX, we will do this via eslint
"[javascriptreact]": { "[javascript]": {
"editor.formatOnSave": false "editor.formatOnSave": false,
}, "editor.defaultFormatter": "esbenp.prettier-vscode"
// show eslint icon at bottom toolbar },
"eslint.alwaysShowStatus": true, "[javascriptreact]": {
// tell the ESLint plugin to run on save "editor.formatOnSave": false
"editor.codeActionsOnSave": { },
"source.fixAll": true // show eslint icon at bottom toolbar
}, "eslint.alwaysShowStatus": true,
// Optional BUT IMPORTANT: If you have the prettier extension enabled for other languages like CSS and HTML, turn it off for JS since we are doing it through Eslint already // tell the ESLint plugin to run on save
"prettier.disableLanguages": ["javascript", "javascriptreact"], "editor.codeActionsOnSave": {
"editor.tabSize": 2, "source.fixAll": true
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace, Fira Code Retina", },
"editor.fontLigatures": true, "editor.tabSize": 2,
"editor.fontSize": 16, "editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace, Fira Code Retina",
"editor.quickSuggestions": { "editor.fontLigatures": true,
"other": true, "editor.fontSize": 16,
"comments": false, "editor.quickSuggestions": {
"strings": false "other": true,
}, "comments": false,
"emmet.showSuggestionsAsSnippets": true, "strings": false
"editor.snippetSuggestions": "top", },
"emmet.triggerExpansionOnTab": true, "files.exclude": {
"editor.formatOnPaste": true, "**/.cache": true,
"editor.formatOnType": true, "**/.DS_Store": true,
"svelte.enable-ts-plugin": true, "**/.git": true,
"cSpell.userWords": ["Shellnut", "sveltejs", "Umami", "vite"], "**/.hg": true,
"git.autofetch": true, "**/.next": true,
"git.mergeEditor": true, "**/.svn": true,
"javascript.inlayHints.variableTypes.enabled": true, "**/CVS": true,
"editor.stickyScroll.enabled": true, "**/dist": false
"workbench.colorTheme": "SynthWave '84", },
"svelte.plugin.svelte.note-new-transformation": false, "emmet.showSuggestionsAsSnippets": true,
"workbench.iconTheme": "material-icon-theme", "editor.snippetSuggestions": "top",
"window.zoomLevel": -1, "emmet.triggerExpansionOnTab": true,
"prettier.useTabs": true "editor.formatOnPaste": true,
"editor.formatOnType": true,
"svelte.enable-ts-plugin": true,
"cSpell.diagnosticLevel": "Hint",
"cSpell.userWords": ["Shellnut", "sveltejs", "Umami", "vite"],
"git.autofetch": true,
"git.mergeEditor": true,
"editor.stickyScroll.enabled": true,
"workbench.colorTheme": "SynthWave '84",
"svelte.plugin.svelte.note-new-transformation": false,
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": -1,
"prettier.useTabs": true,
"javascript.inlayHints.parameterTypes.enabled": true,
"javascript.inlayHints.variableTypes.enabled": true,
"javascript.inlayHints.propertyDeclarationTypes.enabled": true,
"typescript.inlayHints.enumMemberValues.enabled": true,
"typescript.inlayHints.propertyDeclarationTypes.enabled": true,
"typescript.inlayHints.variableTypes.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"javascript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.inlayHints.parameterNames.enabled": "all",
"javascript.inlayHints.parameterNames.enabled": "literals",
"typescript.inlayHints.parameterTypes.enabled": true,
"javascript.inlayHints.enumMemberValues.enabled": true,
"editor.insertSpaces": false,
"workbench.editor.labelFormat": "short",
"explorer.compactFolders": false,
"material-icon-theme.folders.color": "#43a047",
"workbench.tree.indent": 12
} }

View file

@ -1,38 +1,76 @@
// Place your settings in this file to overwrite the default settings
{ {
"editor.wordWrap": "off", "editor.wordWrap": "bounded",
"javascript.updateImportsOnFileMove.enabled": "always", "editor.bracketPairColorization.enabled": true,
"editor.renderWhitespace": "all", "editor.guides.bracketPairs": "active",
// These are all my auto-save configs "javascript.updateImportsOnFileMove.enabled": "always",
"editor.formatOnSave": true, "editor.renderWhitespace": "all",
// turn it off for JS and JSX, we will do this via eslint // These are all my auto-save configs
"[javascript]": { "editor.formatOnSave": true,
"editor.formatOnSave": false "editor.defaultFormatter": "esbenp.prettier-vscode",
}, // turn it off for JS and JSX, we will do this via eslint
"[javascriptreact]": { "[javascript]": {
"editor.formatOnSave": false "editor.formatOnSave": false,
}, "editor.defaultFormatter": "esbenp.prettier-vscode"
// show eslint icon at bottom toolbar },
"eslint.alwaysShowStatus": true, "[javascriptreact]": {
// tell the ESLint plugin to run on save "editor.formatOnSave": false
"editor.codeActionsOnSave": { },
"source.fixAll": true // show eslint icon at bottom toolbar
}, "eslint.alwaysShowStatus": true,
// Optional BUT IMPORTANT: If you have the prettier extension enabled for other languages like CSS and HTML, turn it off for JS since we are doing it through Eslint already // tell the ESLint plugin to run on save
"prettier.disableLanguages": ["javascript", "javascriptreact"], "editor.codeActionsOnSave": {
"editor.tabSize": 2, "source.fixAll": true
"workbench.colorTheme": "Cobalt2", },
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace, Fira Code Retina", "editor.tabSize": 2,
"editor.fontLigatures": true, "editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace, Fira Code Retina",
"editor.fontSize": 13, "editor.fontLigatures": true,
"editor.quickSuggestions": { "editor.fontSize": 16,
"other": true, "editor.quickSuggestions": {
"comments": false, "other": true,
"strings": false "comments": false,
}, "strings": false
"emmet.showSuggestionsAsSnippets": true, },
"editor.snippetSuggestions": "top", "files.exclude": {
"emmet.triggerExpansionOnTab": true, "**/.cache": true,
"editor.formatOnPaste": false, "**/.DS_Store": true,
"editor.formatOnType": false "**/.git": true,
"**/.hg": true,
"**/.next": true,
"**/.svn": true,
"**/CVS": true,
"**/dist": false
},
"emmet.showSuggestionsAsSnippets": true,
"editor.snippetSuggestions": "top",
"emmet.triggerExpansionOnTab": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"svelte.enable-ts-plugin": true,
"cSpell.diagnosticLevel": "Hint",
"cSpell.userWords": ["Shellnut", "sveltejs", "Umami", "vite"],
"git.autofetch": true,
"git.mergeEditor": true,
"editor.stickyScroll.enabled": true,
"workbench.colorTheme": "SynthWave '84",
"svelte.plugin.svelte.note-new-transformation": false,
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": -1,
"prettier.useTabs": true,
"javascript.inlayHints.parameterTypes.enabled": true,
"javascript.inlayHints.variableTypes.enabled": true,
"javascript.inlayHints.propertyDeclarationTypes.enabled": true,
"typescript.inlayHints.enumMemberValues.enabled": true,
"typescript.inlayHints.propertyDeclarationTypes.enabled": true,
"typescript.inlayHints.variableTypes.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"javascript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.inlayHints.parameterNames.enabled": "all",
"javascript.inlayHints.parameterNames.enabled": "literals",
"typescript.inlayHints.parameterTypes.enabled": true,
"javascript.inlayHints.enumMemberValues.enabled": true,
"editor.insertSpaces": false,
"workbench.editor.labelFormat": "short",
"explorer.compactFolders": false,
"material-icon-theme.folders.color": "#43a047",
"workbench.tree.indent": 12
} }