warning: in the working copy of '.eslintrc.cjs', LF will be replaced by CRLF the next time Git touches it
时间: 2024-06-18 15:03:35 浏览: 179
Clinical judgment vs. the computer: Can the school psychologist be replaced by a machine?
这个警告是由于 Git 在 Windows 上默认使用 CRLF 作为行结束符,而在类 Unix 系统上使用 LF。因此,当你在 Windows 上对一个文件进行编辑时,Git 会自动将 LF 替换为 CRLF。
在这种情况下,ESLint 检测到 '.eslintrc.cjs' 文件的行结束符是 LF,而在 Windows 上 Git 将其替换为 CRLF,因此会发出警告。
你可以通过配置 Git 来解决这个问题,例如设置 Git 使用 LF 作为行结束符,或者在 ESLint 配置中禁用该规则。
阅读全文