Skip to content

Instantly share code, notes, and snippets.

@dreamerhyde
Last active December 16, 2017 05:29
Show Gist options
  • Save dreamerhyde/fe4e4771b0a13a0a85fe907c20948e6c to your computer and use it in GitHub Desktop.
Save dreamerhyde/fe4e4771b0a13a0a85fe907c20948e6c to your computer and use it in GitHub Desktop.
VSCode Config
// 將您的設定放入此檔案中以覆寫預設值
{
"sublimeTextKeymap.promptV3Features": true,
"editor.tabSize": 2,
"files.associations": {
"*.vue": "vue"
},
"eslint.autoFixOnSave": true,
"eslint.options": {
"extensions": [
".js",
".vue"
]
},
"eslint.validate": [
"javascript",
"javascriptreact",
"vue"
],
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/dist": true
},
"emmet.syntaxProfiles": {
"javascript": "jsx",
"vue": "html",
"vue-html": "html"
},
"git.confirmSync": false,
"window.zoomLevel": 0,
"editor.wordWrap": "on",
"editor.renderWhitespace": "all",
"editor.cursorBlinking": "smooth",
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"editor.fontFamily": "'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'",
"window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
"editor.codeLens": true,
"editor.snippetSuggestions": "top",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "force-aligned"
}
},
"vetur.format.defaultFormatter.js": "vscode-typescript",
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"vetur.format.defaultFormatter.html": "js-beautify-html"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment