执行 npm run dev
错误 error Expected linebreaks to be 'CRLF' but found 'LF'
解决方法
在.eslintrc文件 rules 里面 配置 "linebreak-style": [0 ,"error", "windows"], //允许windows开发环境
执行 npm run dev
错误 error Expected linebreaks to be 'CRLF' but found 'LF'
解决方法
在.eslintrc文件 rules 里面 配置 "linebreak-style": [0 ,"error", "windows"], //允许windows开发环境
转载于:https://www.cnblogs.com/paulycoding/p/9803139.html