做到了什么
1、短的html标签缩进到一行
2、长的html标签每个属性占一行
3、html、js、css格式化
4、保存自动格式化
个人喜欢html统一在一行,这样清晰些。
但某些table、tree有超级多的属性,又希望分段。
偶然调试出了这样的配置,可以两者兼顾,美哉~
预览
配置了什么
主要是两个插件:
1、volar (我目前用的是vue3,如果你是v2,就用vetur )
2、prettier
其他的个人强烈推荐的:Path Intellisense,Git History,Auto Close Tag,Auto Rename Tag
Setting
{
"tabnine.experimentalAutoImports": true,
"volar.format.initialIndent": {
"html": true
},
"prettier.semi": false,
"prettier.enable": true,
"eslint.packageManager": "yarn",
"explorer.confirmDelete": false,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"security.workspace.trust.untrustedFiles": "open",
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"code-runner.languageIdToFileExtensionMap": {
"bat": ".bat",
"powershell": ".ps1",
"typescript": ".ts"
},
"workbench.iconTheme": "material-icon-theme",
"typescript.updateImportsOnFileMove.enabled": "always",
"thiefBook.filePath": "E:/www/name.txt",
"editor.suggest.showStatusBar": true,
"thiefBook.currPageNumber": 32,
"vscode-edge-devtools.webhint": false,
"emmet.optimizeStylesheetParsing": false,
"vue.autoInsert.dotValue": true,
"vue.inlayHints.missingProps": true,
"vue.inlayHints.inlineHandlerLeading": true,
"vue.inlayHints.optionsWrapper": true,
"vue.splitEditors.layout.left": ["script", "scriptSetup", "styles"],
"prettier.printWidth": 150,
"editor.formatOnSave": true,
"emmet.syntaxProfiles": {
"vue-html": "html",
"vue": "html"
}
}
原文地址:https://blog.csdn.net/mmmmmmmmzw/article/details/132054356
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_6243.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。