Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@3rdp
Created June 14, 2018 12:20
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 3rdp/a93872bcfcca5f925832511ac595aab5 to your computer and use it in GitHub Desktop.
Save 3rdp/a93872bcfcca5f925832511ac595aab5 to your computer and use it in GitHub Desktop.
My VSCode settings
{
"git.confirmSync": false,
"editor.tabSize": 2,
"window.zoomLevel": -1,
"editor.renderControlCharacters": false,
"explorer.confirmDragAndDrop": false,
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
}
],
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
// Enable format on save to make prettier work (by itself)
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": true
},
"prettier.singleQuote": true,
"prettier.trailingComma": "none",
"prettier.semi": false,
"workbench.activityBar.visible": true,
"window.menuBarVisibility": "default",
"editor.minimap.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment