我在用着:
我有这个package.json
:
"standard": {
"parser": "babel-eslint"
}
我正在编写我的 React 组件,例如:
class MyComponent extends React.Component {
static propTypes = {}
static defaultProps = {}
myMethod = () => {}
render () {}
}
我看到这些错误:
'propTypes' 未定义。(无非定义)
'defaultProps' 未定义。(无非定义)
'myMethod' 未定义。(无非定义)
每次打开组件文件时,这些错误都会让我感到困惑!
如何让 ES Lint 将这些类属性识别为有效,或者告诉 ES Lint 忽略它们..?