Skip to content

Instantly share code, notes, and snippets.

@zer0id0
Created February 13, 2019 19:31
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 zer0id0/b95b4f5f6a4a6e9c543b77c239de3eda to your computer and use it in GitHub Desktop.
Save zer0id0/b95b4f5f6a4a6e9c543b77c239de3eda to your computer and use it in GitHub Desktop.
vscode user settings
{
"window.zoomLevel": 2,
"editor.minimap.enabled": false,
"prettier.eslintIntegration": true,
"eslint.alwaysShowStatus": true,
"eslint.run": "onSave",
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatter.html": "js-beautify-html",
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
}
],
"editor.formatOnSave": true,
"editor.tabSize": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment