vscode中vue檔案儲存時怎麼自動格式化?以下這篇文章跟大家介紹一下vscode儲存依照eslint規則自動格式化的方法,希望對大家有幫助!
最近寫vue用了vue-admin-template,npm run dev
跑起來總是有eslint報錯,每次檢查耗時耗力,記錄解決方法。 【推薦學習:《vscode入門教學》】
{ "editor.suggestSelection": "first", "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", "explorer.confirmDelete": false, "editor.tabSize": 2, "files.autoSave": "onFocusChange", "editor.fontSize": 14, // 设置字体 "editor.tabCompletion": "on", // 用来在出现推荐值时,按下Tab键是否自动填入最佳推荐值 "editor.codeActionsOnSave": { "source.fixAll.eslint": true, "source.organizeImports": true // 这个属性能够在保存时,自动调整 import 语句相关顺序,能够让你的 import 语句按照字母顺序进行排列 }, "editor.formatOnSave": true, // #让vue中的js按"prettier"格式进行格式化 "vetur.format.defaultFormatter.html": "js-beautify-html", "vetur.format.defaultFormatter.js":"prettier-eslint", "vetur.format.defaultFormatterOptions": { "js-beautify-html": { // #vue组件中html代码格式化样式 "wrap_attributes": "auto", //也可以设置为“auto”,效果会不一样 "wrap_line_length": 200, "end_with_newline": false, "semi": false, "singleQuote": true }, "prettier": { "semi": false, "singleQuote": true, "editor.tabSize": 2 }, "prettyhtml": { "printWidth": 160, "singleQuote": false, "wrapAttributes": false, "sortAttributes": false } }, "[vue]": { "editor.defaultFormatter": "octref.vetur" }, "bracketPairColorizer.depreciation-notice": false, "editor.mouseWheelZoom": true }
格式化目錄下所有檔案
下載外掛 Start Format Files,然後右鍵目錄選擇
開始格式化檔案即可。
忽略檔案設定見 https://marketplace.visualstudio.com/items?itemName=jbockle.jbockle-format-files&ssr=false#over更多關於VSCode的相關知識,請造訪:
vscode教學! !
以上是淺析vscode中vue檔案儲存時怎麼自動格式化的詳細內容。更多資訊請關注PHP中文網其他相關文章!