ESLint React PropTypes,' prop'在道具验证中缺失

时间:2018-02-21 13:52:25

标签: reactjs eslint react-proptypes eslint-config-airbnb

我有一个无状态反应组件

import React from 'react'
import styled from 'styled-components';
import PropTypes from 'prop-types';

export default props => <StyledButton>{props.children}</StyledButton>

StyledButton.propTypes = {
    children: PropTypes.node,
}
StyledButton.defaultProps = {
    children: null,
}

一个类组件

class Thumbnail extends React.Component {
    constructor(props) {
        super(props)
        this.state = {
           color: 'red',
        }
    }
    render() {
        return (
           <button>{this.props.children}</button>
       )
    }
}

Thumbnail.propTypes = {
    children: PropTypes.node,
}
Thumbnail.defaultProps = {
    children: null,
}

我的eslintrc文件

module.exports = {
"extends": "airbnb",
"plugins": [
    "react",
    "jsx-a11y",
    "import"
],
"rules": {
    "react/jsx-filename-extension": 0,
    "semi": 0,
    "indent": ["error", 4],
    "react/jsx-indent": 0,
    "jsx-a11y/img-redundant-alt": 0
}
};

Eslint抱怨孩子在道具验证中缺失了#39;在无国籍组件中。 但是在课程组件中它很好。

花了2个小时试图解决这个问题,非常感谢任何帮助

1 个答案:

答案 0 :(得分:4)

这是因为您正在直接导出无状态组件而没有任何变量保持它同时您正在为propTypes创建defaultPropsStyledButton并且不存在。试试这个。

const StyledButton = props => <button>{props.children}</button>;

StyledButton.propTypes = {
  children: PropTypes.node,
};

StyledButton.defaultProps = {
  children: null,
};

export default StyledButton;