{
"files.autoSave": "onFocusChange",
"editor.mouseWheelZoom": true,
"vetur.validation.template": false,
//eslint 代码自动检查格式化相关配置
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "html",
"autoFix": true
},
{
"language": "vue",
"autoFix": true
}
],
"eslint.autoFixOnSave": true,
"explorer.confirmDragAndDrop": false,
"editor.detectIndentation": false,
"editor.tabSize": 2, //制表符符号eslint
"editor.formatOnSave": true, //每次保存自动格式化
"javascript.format.insertSpaceBeforeFunctionParenthesis": true, //让函数(名)和后面的括号之间加个空格
"vetur.format.defaultFormatter.html": "js-beautify-html", //格式化.vue中html
"vetur.format.defaultFormatter.js": "vscode-typescript", //让vue中的js按编辑器自带的ts格式进行格式化
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "force-aligned" //属性强制折行对齐
}
},
// vetur语法高亮
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html"
},
"window.zoomLevel": 1,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"liveServer.settings.donotShowInfoMsg": true,
"px-to-rem.px-per-rem": 13,
"code-runner.runInTerminal": true,
"code-runner.executorMap": {
"java": "cd $dir && javac -encoding utf-8 $fileName && java $fileNameWithoutExt"
},
"diffEditor.ignoreTrimWhitespace": true,
"workbench.iconTheme": "material-icon-theme",
//background背景图相关配置
"update.enableWindowsBackgroundUpdates": true,
"background.customImages": [
"[https://static.dreamwings.cn/wp-content/uploads/2018/04/282761-sample-1140x600.jpg](https://static.dreamwings.cn/wp-content/uploads/2018/04/282761-sample-1140x600.jpg)" //图片地址
],
"background.style": {
"content": "''",
"pointer-events": "none",
"position": "absolute", //图片位置
"width": "100%",
"height": "100%",
"z-index": "99999",
"background.repeat": "no-repeat",
"background-size": "100% 100%", //图片大小
"opacity": 0.15 //透明度
},
"background.useFront": true,
"background.useDefault": false,
"workbench.colorTheme": "Monokai Classic",
"workbench.startupEditor": "newUntitledFile",
"terminal.integrated.fontWeight": "bold",
"settingsSync.ignoredExtensions": [
] //是否使用默认图片
}
码砖不易,记得关注和点赞哦~~