vs code中新增Vue格式化時不支援格式化html部分的支援
1.首先安裝vetur
2.然後配置vscode的設定項,如下
{
"explorer.confirmDragAndDrop": true, // 當拖動一個檔案或者資料夾到另一個資料夾時,是否啟動提示
"editor.fontSize": 14, // 設定編輯器字型大小
"editor.tabSize": 2, // 設定編輯器一個tab佔多少個空格
"editor.renderWhitespace": "all", // 空格是否顯示
"editor.lineHeight": 20, // 編輯器行高
"javascript.implicitProjectConfig.experimentalDecorators": true, // 使用vscode編輯器出現,experimentaldecorators報錯
"window.zoomLevel": 0, // Adjust the zoom level of the window
"editor.detectIndentation": false, // When opening a file, `editor.tabSize` and `editor.insertSpaces` will be detected based on the file contents.
"typescript.updateImportsOnFileMove.enabled": "always", // Enable/disable automatic updating of import paths when you rename or move a file in VS Code. Possible values are: 'prompt' on each rename, 'always' update paths automatically, and 'never' rename paths and don't prompt me. Requires TypeScript >= 2.9
"files.autoSave": "onFocusChange",
"vetur.format.defaultFormatter": {
"html": "prettier",
"css": "prettier",
"postcss": "prettier",
"scss": "prettier",
"less": "prettier",
"js": "prettier",
"ts": "prettier",
"stylus": "stylus-supremacy"
}
}
提示不存在配置別管,照配
如果要配置格式化選項,那麼需要新增一個檔案
.prettierrc
具體格式規則在下面配置就行了,如下
{
"semi": false,
"overrides": [
{
"files": "*.test.js",
"options": {
"semi": true
}
}
]
}
相關文章
- vs code配置vue自動格式化Vue
- Prettier 1.15程式碼格式化工具新增Angular和Vue.js支援AngularVue.js
- VS Code 對 Lua 程式碼格式化
- vs2017不支援python語言程式碼格式化Python
- VS Code markdown格式化的外掛編寫(2)[開發流程]
- VS Code markdown格式化的外掛編寫(3)[解難反思]
- Eclipse中html/jsp格式化配置EclipseHTMLJS
- HTML 文字格式化HTML
- HTML————7、HTML文字格式化HTML
- HTML 文字格式化元素HTML
- Google釋出VS Code,支援Kubernetes應用開發Go
- 【重磅】VS Code 的 Java 語言支援 1.0 版本正式釋出Java
- HTML 文字格式化簡介HTML
- Golang中的格式化時間輸出Golang
- Vue格式化處理Vue
- vue.js格式化時間並每秒更新Vue.js
- Code Runner for VS Code,下載量突破 4000 萬!支援超過50種語言
- WebAPI+Html跨域時對session的支援WebAPIHTML跨域Session
- vscode下的vue檔案格式化VSCodeVue
- vscode配置vue的自動格式化VSCodeVue
- Python格式化時間Python
- 格式化時間 戳
- 日期時間格式化
- C++資料格式化4 - 格式化時間戳C++時間戳
- Arch Linux下Visual Stdio Code在格式化C程式碼時報錯LinuxC程式
- VS Code 中的增強 code CLI
- 直播網站原始碼,vue工具類,時間格式化網站原始碼Vue
- C++資料格式化3 - 格式化時間區間(使用時長)C++
- 解決vscode 中儲存後html自動格式化的問題VSCodeHTML
- 課時15:字串:格式化字串
- JavaScript時間日期格式化JavaScript
- js時間格式化工具JS
- 格式化釋出時間
- JavaScript 日期和時間的格式化JavaScript
- php新增yaml支援PHPYAML
- dolphinscheduler新增hana支援
- Python中的字串格式化方法Python字串格式化
- vscode配置vue專案的程式碼格式化VSCodeVue