vue-cli3创建项目运行报错`3 errors and 0 warnings potentially fixable with the `--fix` option.`

报错问题:
vue-cli3创建项目运行报错`3 errors and 0 warnings potentially fixable with the `--fix` option.`_第1张图片
因为创建项目中Eslint选择 standard 的话
在创建vue项目中,会选择linter/Formatter,eslint-config-standard

"standard"插件代表的是eslint的standard插件都要安装
所以参考一下以下依赖是否安装

eslint

babel-eslint

eslint-plugin-html

eslint-config-standard

eslint-plugin-standard

eslint-plugin-promise

解决办法:

.eslintrc.js文件中去掉’@vue/standard’
vue-cli3创建项目运行报错`3 errors and 0 warnings potentially fixable with the `--fix` option.`_第2张图片

查阅文章:https://www.cnblogs.com/Super-scarlett/p/12494255.html

你可能感兴趣的:(Vue)