We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我本地用的是windows系统 本地运行前端 执行 npm run dev 会报如上错误
我已经找到解决办法 http://www.wuyfdevo.com/archives/378
The text was updated successfully, but these errors were encountered:
Open package.json, added following rules under rules line:
package.json
"rules": { "linebreak-style": 0, "global-require": 0, ...
for VScode users: click the option at the bottom-right of the window and set it to LF from CRLF errors will fixed for me
LF
CRLF
Sorry, something went wrong.
打开 .eslintrc.json 将其中
.eslintrc.json
"linebreak-style": ["error", "windows"], // 换行风格
改为
"linebreak-style": ["error", "unix"], // 换行风格
No branches or pull requests
我本地用的是windows系统
本地运行前端 执行 npm run dev 会报如上错误
我已经找到解决办法
http://www.wuyfdevo.com/archives/378
The text was updated successfully, but these errors were encountered: