解决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张图片

解决办法:将一下部分:"lint": "vue-cli-service lint" 修改为:eslint --fix --ext .js,.vue src

解决vue项目运行出现warnings potentially fixable with the `--fix` option的报错问题_第2张图片

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

你可能感兴趣的:(解决vue项目运行出现warnings potentially fixable with the `--fix` option的报错问题)