vscode 配置文件

配置如下:

{
"window.zoomLevel": 2,
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html"
},
//vetur:对html的内容使用js-beautify-html
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "force-expand-multiline"
},
"prettyhtml": {
"printWidth": 100,
"singleQuote": false
}
},
//workbench
"workbench.colorTheme": "Monokai",
"workbench.startupEditor": "welcomePage",
"javascript.format.insertSpaceBeforeFunctionParenthesis": false,
"eslint.enable": true,
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
"vue",
{
"language": "vue",
"autoFix": true
}
],
"eslint.options": {
"plugins": [
"html"
]
},
"files.associations": {
"*.cjson": "jsonc",
"*.wxss": "css",
"*.wxs": "javascript",
"*.ejs": "html",
"*.js": "javascript",
"*.vue": "vue"
},
"emmet.includeLanguages": {
"wxml": "html"
},
"update.showReleaseNotes": false,
"telemetry.enableCrashReporter": false,
"files.autoSave": "off",
//editor
"editor.formatOnSave": true,
"editor.renderWhitespace": "all",
"editor.mouseWheelZoom": false,
"editor.wordWrap": "on",
"editor.tabSize": 4,
"editor.fontSize": 14,
"editor.fontFamily": "Consolas, 'Courier New', monospace",
//explorer
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"vsicons.dontShowNewVersionMessage": true
}

可安装的插件 :

中文简体包;

ESlint;

Git History;

Git History Diff;

GitLens;

Vetur;

猜你喜欢

转载自www.cnblogs.com/liuqd001/p/11937594.html