vue使用eslint遇到的坑
一、error Extra semicolon semi解决:eslint 配置是以 standard 为基础的,要求是不使用分号,要使用分号则需要在.eslintrc配置文件rules增加配置:‘semi’:['error','always'],如果希望eslint不检查分号,就‘semi’:0,二、indent Expected indentation of 2 spac...
·
一、 error Extra semicolon semi
解决:eslint 配置是以 standard 为基础的,要求是不使用分号,要使用分号则需要在.eslintrc配置文件rules增加配置:
‘semi’:['error','always'],
如果希望eslint不检查分号,就‘semi’:0,
二、indent Expected indentation of 2 spaces but found 4
解决:缩进错误,.eslintrc配置文件设置缩进为4,
"indent": ["error",4],
三、data属性应位于template之上:warning The "data" property should be above the "template" property on line 5
四、后面多了一个句号:error Unexpected trailing comma
五、文件末尾需要换行:error Newline required at end of file but not found
更多推荐
已为社区贡献3条内容
所有评论(0)