Skip to content

Instantly share code, notes, and snippets.

@iwatakeshi
Created September 28, 2019 21:02
Show Gist options
  • Save iwatakeshi/7b227be77c972e3e96f88b6c4552b782 to your computer and use it in GitHub Desktop.
Save iwatakeshi/7b227be77c972e3e96f88b6c4552b782 to your computer and use it in GitHub Desktop.
My VScode settings
{
"window.zoomLevel": 3,
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
}
],
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatter.html": "js-beautify-html",
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"workbench.colorTheme": "Default Light+",
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"python.jediEnabled": false,
"[python]": {},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment