解决vue项目运行出现warnings potentially fixable with the `--fix` option.的报错问题

问题:vue-cil3 运行报错 warnings potentially fixable with the --fix option.
原因:与创建项目 eslint 设置有问题,可以通过“—fix”选项修复
解决vue项目运行出现warnings potentially fixable with the `--fix` option.的报错问题_第1张图片
解决方法:在package.json文件修改
解决vue项目运行出现warnings potentially fixable with the `--fix` option.的报错问题_第2张图片
修改为:eslint --fix --ext .js,.vue src就可以解决
解决vue项目运行出现warnings potentially fixable with the `--fix` option.的报错问题_第3张图片

你可能感兴趣的:(好记性不如难笔头,学习记录,工作中遇到的问题,vue.js,javascript,前端)