VS Code配置

{
"files.autoSave": "afterDelay",
"editor.tabSize": 4,
"workbench.editor.enablePreview": false,
"window.zoomLevel": 0,
"workbench.statusBar.visible": true,
"editor.wordWrap": "off",
"workbench.sideBar.location": "left",
"editor.minimap.enabled": false,
"explorer.confirmDelete": false,
"editor.detectIndentation": false,
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"files.exclude": {
"node_modules/": true,
".idea/": true,
".svn/": true,
".vscode/": true,
"**/.map": true,
},
"editor.suggest.snippetsPreventQuickSuggestions": false,
"terminal.integrated.rendererType": "dom",
"editor.quickSuggestions": {
"strings": true
},
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"editor.fontWeight": "500",
"files.associations": {
"*.html": "html",
"*.vue": "vue",
"*.cjson": "jsonc",
"*.wxss": "css",
"*.wxs": "javascript"
},
"beautify.language": {
"js": {
"type": [
"javascript",
"json"
],
"filename": [
".jshintrc",
".jsbeautify"
]
},
"css": [
"css",
"scss"
],
"html": [
"htm",
"html",
"vue"
]
},
"vsicons.dontShowNewVersionMessage": true,
"emmet.includeLanguages": {
"wxml": "html"
},
"minapp-vscode.disableAutoConfig": true,
"cssrem.rootFontSize":16,
"cssrem.fixedDigits": 2,
"editor.renderControlCharacters": false,
"editor.fontSize": 16
}

猜你喜欢

转载自www.cnblogs.com/L807192770/p/11319891.html