vue项目报错:errors and 0 warnings potentially fixable with the `--fix` option.

Vue项目中出现 errors and 0 warnings potentially fixable with the --fix option. 报错问题

原因:项目 eslint 设置有问题
解决方案:可以通过“—fix”选项修复

  1. 打开 package.json 文件,找到下面的代码
    vue项目报错:errors and 0 warnings potentially fixable with the `--fix` option._第1张图片
  2. 将红框代码修改为
"lint": "eslint --fix --ext .js,.vue src"

vue项目报错:errors and 0 warnings potentially fixable with the `--fix` option._第2张图片
3. 重新npm启动一下

然后就好啦,如果还不行的话,只能去修改eslint

你可能感兴趣的:(web前端,vue,eslint)