Skip to content

Instantly share code, notes, and snippets.

@simbathesailor
Created June 8, 2021 10:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simbathesailor/e70f836e1d58369fb35b129b805928fe to your computer and use it in GitHub Desktop.
Save simbathesailor/e70f836e1d58369fb35b129b805928fe to your computer and use it in GitHub Desktop.
Vscode.settings.json
{
"workbench.fontAliasing": "antialiased",
"window.zoomLevel": 3,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true,
"eslint.validate": ["javascript", "javascriptreact"],
"eslint.codeAction.showDocumentation": {
"enable": true
},
"eslint.alwaysShowStatus": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"eslint.packageManager": "yarn",
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"search.showLineNumbers": true,
"workbench.sideBar.location": "right",
"editor.tabSize": 2,
"editor.accessibilitySupport": "off",
"editor.quickSuggestions": {
"strings": true
},
"go.formatTool": "goimports",
"go.autocompleteUnimportedPackages": true,
"files.associations": {
"*.svelte": "html"
},
"editor.fontFamily": "Comic Mono, Menlo, Monaco, 'Courier New', monospace",
"css.validate": false,
"workbench.editorAssociations": [],
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"mssql.connections": [
{
"server": "{{put-server-name-here}}",
"database": "{{put-database-name-here}}",
"user": "{{put-username-here}}",
"password": "{{put-password-here}}"
}
],
"go.toolsManagement.autoUpdate": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment