vscode prettier格式化vue中解构格式错乱
问题描述
vscode prettier格式化vue中 解构 格式错乱
这个是配置文件:
"eslint.alwaysShowStatus": true,
"eslint.options": {
"plugins": ["html", "vue"],
"configFile": "./.eslintrc.js"
},
"eslint.validate": [
"javascript",
"javascriptreact",
"scss",
"sass",
"css",
{
"language": "html",
"autoFix": true
},
{
"language": "vue",
"autoFix": true
}
],
"eslint.autoFixOnSave": true,
"prettier.singleQuote": true,
"prettier.jsxSingleQuote": true,
"prettier.useTabs": false,
"prettier.eslintIntegration": true,
"prettier.trailingComma": "es5",
"prettier.tabWidth": 2,
"prettier.arrayExpand": true,
"prettier.arrowParens": "avoid",
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "auto"
},
"prettyhtml": {
"printWidth": 100,
"singleQuote": false,
"wrapAttributes": false,
"sortAttributes": true
}
},
"vetur.format.defaultFormatter.js": "prettier-eslint",
"beautify.config": {
"brace_style": "collapse,preserve-inline"
},
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"terminal.integrated.shell.osx": "zsh",
"editor.formatOnSave": true,
"editor.fontWeight": "500"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试把这个改下