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
积累小的知识,才能成就大的智慧,希望网上少一些复制多一些原创有用的答案