背景:团队使用 eslint 格式化,保存自动 eslint-fix,大部分的人都正常,一个小伙子 js(项目使用 vue,在.vue 中的 js 可以正常格式化缩进)文件保存时会把缩进变成 8 个“Expected indentation of 4 spaces but found 8.”,系统环境是 windows 。
现象:ctrl+s 触发而 elint 自动格式化有很明显的两次格式改变,第一次格式正常,紧接着会闪一下,由把格式变成 8 个 spaces 。
看了他的 eslint 、.editconfig 、setting.json 配置和大家是一样,且格式化的操作代码格式正常,把语言选择为 javascriptreact 能正常使用 eslint 的自动格式化。有没有兄弟姐妹叔叔阿姨遇到过!
1
red2dog 2020-04-26 16:01:07 +08:00
看看他有没有装其他的格式化插件吧。 根据 你这个描述
|
2
oreo 2020-05-10 17:58:23 +08:00
Please also note that if you use ESLint as your default formatter you should turn off editor.formatOnSave when you have turned on editor.codeActionsOnSave. Otherwise you file gets fixed twice which in unnecessary.
vscode-eslint 插件文档里写着,试试 |