{ "workbench.iconTheme": "vscode-icons", "explorer.confirmDragAndDrop": false, "explorer.confirmDelete": false, //配置eslint "editor.formatOnSave": true, // 启用保存时自动修复,默认只支持.js文件 "eslint.validate": [ "javascript", // 用eslint的规则检测js文件 "vue", // 为vue文件开启保存自动修复的功能 "html" ], "editor.codeActionsOnSave": { "source.fixAll.eslint": true, "source.organizeImports": true, // 自动调节import顺序 }, "vetur.ignoreProjectWarning": true, "workbench.editor.enablePreview": true, // 单击不覆盖 "eslint.migration.2_x": "off", "files.associations": { "*.vue": "html" }, "auto-close-tag.activationOnLanguage": [ "xml", "php", "blade", "ejs", "jinja", "javascript", "javascriptreact", "typescript", "typescriptreact", "plaintext", "markdown", "vue", "liquid", "erb", "lang-cfml", "cfml", "HTML (EEx)", "HTML (Eex)", "plist" ], "vsicons.dontShowNewVersionMessage": true, "http.proxyAuthorization": null, "workbench.colorTheme": "Ysgrifennwr", "sync.gist": "e6d2a2c8a04cf35e0a46af5a44ad9a07", "background.customImages": [ "file:///C:/File_Box/vscode_bg/2.jfif" ], "background.style": { "content":"''", "pointer-events":"none", "position":"absolute",//图片位置 "width":"100%", "height":"100%", "z-index":"99999", "background-repeat":"no-repeat", "background-size":"100%,100%",//图片大小 "background-position": "center", "opacity":0.1 //透明度 }, "background.useDefault": false, "[jsonc]": { "editor.defaultFormatter": "HookyQR.beautify" }, "[vue]": { "editor.defaultFormatter": "rvest.vs-code-prettier-eslint" }, "[html]": { "editor.defaultFormatter": "rvest.vs-code-prettier-eslint" }, "[javascript]": { "editor.defaultFormatter": "rvest.vs-code-prettier-eslint" }, "editor.linkedEditing": true, }