报这个错是因为
package.json
中配置项少了 --fixed
把lint 修改如下就好了
"lint": "eslint --fix --ext .js,.vue src",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "eslint --fix --ext .js,.vue src"
},
发表评论