vue-cli3创建项目运行报错`3 errors and 0 warnings potentially fixable with the `--fix` option.`
报错问题:
因为创建项目中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’
查阅文章:https://www.cnblogs.com/Super-scarlett/p/12494255.html