【已解决】vue-cil3 运行报错:x errors potentially fixable with the `--fix` option

背景:

3 errors found.
3 errors potentially fixable with the `--fix` option.

解决办法:
找到package.json文件
然后将下面lint部分修改为:

 eslint --fix --ext .js,.vue src

【已解决】vue-cil3 运行报错:x errors potentially fixable with the `--fix` option_第1张图片
修改后依旧没解决:

先查看Esint是否关闭,如果关闭的话,修改上面也是会跑不起来的
【已解决】vue-cil3 运行报错:x errors potentially fixable with the `--fix` option_第2张图片
最终解决办法:

如果还没有解决的话,那就别安装Eslint,或者已经安装了取消不使用它了

(我最后是使用了这个办法,然后跑起来了)
【已解决】vue-cil3 运行报错:x errors potentially fixable with the `--fix` option_第3张图片

====================== 更新 ============================
在这里插入图片描述
或许你可以在这个文件里面加一点规则进去
直接在文件根目录下的.eslintrc.js文件加入如下代码,直接忽略掉就行了(将原本js里面的rules数组覆盖即可)

  rules: {
     
// allow async-await
'generator-star-spacing': 'off',
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-trailing-spaces': 'off',
'indent': 'off',
'spaced-comment': 'off',
'no-trailing-spaces': 'off',
'no-new': 'off',
'key-spacing': 'off',
'comma-dangle': 'off',
'eol-last': 'off',
'quotes': 'off',
'semi': 'off',
'keyword-spacing': 'off',
'space-before-blocks': 'off',
'comma-spacing': 'off',
'space-before-function-paren': 'off',
'space-infix-ops': 'off',
'no-multiple-empty-lines': 'off',
'block-spacing': 'off',
'padded-blocks': 'off',
'arrow-spacing': 'off',
'no-sequences': 'off',
'no-unused-expressions': 'off',
'no-multi-spaces': 'off',
'no-unused-vars': 'off',
'camelcase ': 'off',
}

最后,成功跑通项目
【已解决】vue-cil3 运行报错:x errors potentially fixable with the `--fix` option_第4张图片

================= 2020-1-16 下午4点34更新============================

写着写着又遇到了这种情况,快自闭了~

继续填充方法:

如何操作?在.eslintrc.js文件中找到’@vue/standard’配置将其删除或注释。

这里还有一个更好的解决方案:就是给你的编辑器里装一个eslint 插件。
【已解决】vue-cil3 运行报错:x errors potentially fixable with the `--fix` option_第5张图片

学如逆水行舟,不进则退

你可能感兴趣的:(Vue全家桶系列,linux,java,python,mysql,tomcat)