总结一下vue项目中使用eslintrc进行检查那些令人头疼的错误

总结一下vue项目中使用eslintrc进行检查那些令人头疼的错误

  • 一、Expected indentation of 2 spaces but found 4 indent
  • 二、‘Unexpected trailing comma. (comma-dangle)’
  • 三、Missing space before function parentheses space-before-function-paren
  • 四、Extra semicolon semi
  • 五、eol-last

一、Expected indentation of 2 spaces but found 4 indent

在这里插入图片描述
修改eslintrc.js文件rules字段下增加'indent': ['off', 2],
在这里插入图片描述

二、‘Unexpected trailing comma. (comma-dangle)’

多加了逗号,删掉即可
比如
总结一下vue项目中使用eslintrc进行检查那些令人头疼的错误_第1张图片
删掉就可以

三、Missing space before function parentheses space-before-function-paren

在这里插入图片描述

修改eslintrc.js文件rules字段下增加'space-before-function-paren': 0,
总结一下vue项目中使用eslintrc进行检查那些令人头疼的错误_第2张图片

四、Extra semicolon semi

在这里插入图片描述
修改eslintrc.js文件rules字段下增加'semi': 0,
总结一下vue项目中使用eslintrc进行检查那些令人头疼的错误_第3张图片

五、eol-last

在这里插入图片描述
修改eslintrc.js文件rules字段下增加'semi': 0,
总结一下vue项目中使用eslintrc进行检查那些令人头疼的错误_第4张图片
目前就发现这么多,之后发现继续补充

你可能感兴趣的:(Vue日常总结,vue.js)