相关问题的解决,得益于Lucky_LXG ,

因为设置了eslint,如果你不想有规范的js代码,可以重新初始化关掉eslint。Use ESLint to lint your code? (Y/n) 这一步选no如果你想有良好的规范,其实错误已经很清晰,大多数就是缩进不规范,分号不需要等原因,很容易解决的。写多了就成习惯。

 

此次出现的代码提示主要有:

1.http://eslint.org/docs/rules/no-multiple-empty-lines
1 http://eslint.org/docs/rules/spaced-comment

expected indentation of 2 spaces but found 3 //预期缩进2个空间但发现3个,问题:是多了一个空隔
a space is required after //需要一个空间 ,问题:参数之间要有空隔,例如:{ title: '用户管理',icon: 'table' } 错,{ title: '用户管理', icon: 'table' }对
unexpected trailing comma  //意外尾逗号,一般最后一句代码不需要逗号

Logo

前往低代码交流专区

更多推荐