mac 和windows 的vscode 编译代码后出现eslint检查不通过的问题

我是vue项目,主要出现的问题:
error Delete `␍` prettier/prettier

 

在.eslintrc.cjs 中加入:

module.exports = {
  ....
  rules: {
    'prettier/prettier': ['error', { endOfLine: 'auto' }]
  },
 ....
}

如果还不生效,在
.prettierrc.json
中加入:

{
  ...
  "endOfLine": "auto"
  ...
}

最后如果还不可以就试试加入.editorconfig文件,内容如下:

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
quote_type = single

 

posted @ 2024-09-05 14:08  洛晨随风  阅读(15)  评论(0编辑  收藏  举报