vue项目报错 Delete `␍` prettier/prettier
时间: 2023-08-31 10:09:58 浏览: 223
eslint+prettier统一代码风格的实现方法
5星 · 资源好评率100%
这个错误提示一般出现在使用 Windows 操作系统的开发者使用了 Git 进行代码管理时,由于 Windows 和 Unix(Linux、Mac OS X 等)的换行符不同,造成了代码格式化工具 prettier 报错。可以尝试以下几种解决方案:
1. 在项目根目录下增加 .prettierrc 文件,内容为:
```
{
"endOfLine": "auto"
}
```
2. 在项目的 package.json 文件中增加以下配置:
```json
"prettier": {
"endOfLine": "auto"
}
```
3. 在 Git 中设置转换换行符为 lf:
```
git config --global core.autocrlf false
```
这样 Git 就不会自动将 lf 换行符转换为 Windows 的 crlf 换行符了。
阅读全文