在使用了ESLint插件以后代码有一点规范问题都会报红,明明代码没有问题,就是出现了好几处问题,上网找了才发现是使用ESLint插件的问题,之前没用过,有的给出方法是禁用该插件,但是想了想,确实应该好好规范一下自己写的代码了。

1、Missing space before value for key 'methods'
    //methods的值之前要有空格
2.Missing space before opening brace
    //开始的大括号之前缺少空格
3.Missing space before function parentheses
    //圆括号之前缺少空格
4.Expected indentation of 6 spaces but found 4
	//希望6个缩进,但只发现4个
5.Strings must use singlequote
	//字符串必须是单引号
6.Extra semicolon
	//多余的分号
7.A space is required after ','
	//‘,’后面需要有一个空格
	
8.Operator '=' must be spaced
	//必须用空格隔开运算符 ‘=’
9.Newline required at end of file but not found
	//文件的末尾需要有空的一行


Logo

前往低代码交流专区

更多推荐