vscode prettier 不按eslint 配置进行整理
RT 正常的 indent 可以但是比如ref 的位置 就不行了
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.history": true,
"**/ioscan-frontend": true,
"**/node_modules": true,
"**/pivot": true,
"**/public": true,
"**/dist": true,
"**/.idea": true
},
"workbench.colorTheme": "Visual Studio Light",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
// For ESLint
"source.fixAll.eslint": true,
// For TSLint
"source.fixAll.tslint": true,
// For Stylelint
"source.fixAll.stylelint": true
},
"prettier.useEditorConfig": false,
"prettier.eslintIntegration": true,
//配置 ESLint 检查的文件类型
"eslint.validate": ["javascript", "javascriptreact", "vue", "html"],
"eslint.options": {
"configFile": "./`.eslintrc`.js"
}
}
这是我的settings 求解
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
sf 解决办法
过程中出现了会整理两次的问题 最后的配置文件