Skip to content

Instantly share code, notes, and snippets.

@heyvaleria
Created November 6, 2023 17:52
Show Gist options
  • Save heyvaleria/c67ba9aba7681c196ed6a63c828f22f9 to your computer and use it in GitHub Desktop.
Save heyvaleria/c67ba9aba7681c196ed6a63c828f22f9 to your computer and use it in GitHub Desktop.
My VSCode settings.json
{
"files.autoSave": "onFocusChange",
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"editor.tabSize": 2,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderLineHighlight": "none",
"editor.renderWhitespace": "none",
"editor.overviewRulerBorder": false,
"editor.hideCursorInOverviewRuler": true,
"editor.folding": false,
"editor.occurrencesHighlight": false,
"editor.glyphMargin": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.inlineSuggest.enabled": true,
"explorer.openEditors.visible": 1,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"html.format.contentUnformatted": "",
"window.zoomLevel": 1,
"workbench.activityBar.location": "hidden",
"workbench.startupEditor": "none",
"workbench.colorCustomizations": {
"tab.activeBorder": "#0000"
},
"security.workspace.trust.untrustedFiles": "open",
"javascript.validate.enable": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment