Base ES6 - sept08/eslint-config-huawei GitHub Wiki
与ES6标准相关规则
- 箭头函数体样式
箭头函数返回值需通过return标明,需配合JSDoc注释规则
规则设置:arrow-body-style
'arrow-body-style': [
'warn',
'as-needed',
{
'requireReturnForObjectLiteral': true
}
]
与ES6标准相关规则
箭头函数返回值需通过return标明,需配合JSDoc注释规则
规则设置:arrow-body-style
'arrow-body-style': [
'warn',
'as-needed',
{
'requireReturnForObjectLiteral': true
}
]