安裝的插件
Beautify
ESLint
vetur
在settings.json 文件中配置
// 代碼格式化 // vscode默認啟用了根據文件類型自動設置tabsize的選項 "editor.detectIndentation": false, // 重新設定tabsize "editor.tabSize": 2, // #每次保存的時候自動格式化 "editor.formatOnSave": true, // #每次保存的時候將代碼按eslint格式進行修復 "eslint.autoFixOnSave": true, // 添加 vue 支持 "eslint.validate": [ "javascript", "javascriptreact", { "language": "vue", "autoFix": true } ], // #讓prettier使用eslint的代碼格式進行校驗 "prettier.eslintIntegration": true, // #去掉代碼結尾的分號 "prettier.semi": false, // #使用帶引號替代雙引號 "prettier.singleQuote": true, // #讓函數(名)和后面的括號之間加個空格 "javascript.format.insertSpaceBeforeFunctionParenthesis": true, // #這個按用戶自身習慣選擇 "vetur.format.defaultFormatter.html": "js-beautify-html", // #讓vue中的js按編輯器自帶的ts格式進行格式化 "vetur.format.defaultFormatter.js": "vscode-typescript", "vetur.validation.template": false, "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "vetur.format.defaultFormatterOptions": { "js-beautify-html": { "wrap_attributes": "auto" }, "prettyhtml": { "printWidth": 160, "singleQuote": false, "wrapAttributes": false, "sortAttributes": false } }, "search.followSymlinks": false, "git.autorefresh": false, "explorer.confirmDelete": false, "[html]": { "editor.defaultFormatter": "HookyQR.beautify" }, "background.style": { "content": "''", "pointer-events": "none", "position": "absolute", "z-index": "99999", "width": "50%", "height": "100%", "background-position": "50% 50%", "background-repeat": "no-repeat", "opacity": 1 }, "liveServer.settings.useWebExt": true, "liveServer.settings.donotShowInfoMsg": true, "workbench.sideBar.location": "left", "background.enabled": false, "liveServer.settings.fullReload": true, "livereload.port": 5500, "editor.largeFileOptimizations": false, "[javascript]": { "editor.defaultFormatter": "HookyQR.beautify" }, "editor.wordWrap": "bounded", "editor.wordWrapColumn": 160, "files.associations": {},