感谢您浏览我的问题。
使用这样的装饰器后,我遇到了一些错误的提示
@decorate({ title: 'head' })
class Test {
@decorate(item => ({ age: item.age }))
method(){
return ;
}
}
export default Test;
.eslintrc配置:
{
"parser": "babel-eslint",
"rules": {
"no-unused-vars": 2
}
}
版本版本
"babel-eslint": "6.0.3",
"eslint": "^2.8.0"
错误提示消息
Cannot read property 'type' of undefined
TypeError: Cannot read property 'type' of undefined
at collectUnusedVariables (/Users/Documents/support_decorator/node_modules/eslint/lib/rules/no-unused-vars.js:184:44)
看起来像这行会导致问题。并使用了ES5常用的匿名功能,错误仍然存在。
@decorate(item => ({ age: item.age }))
我该怎么办?将eslint和babel-eslint升级到特定版本,还是只关闭“ no-unused-vars”规则?