With the forbid-prop-types rule enabled, eslint
forbids me from using style: React.PropTypes.object
, and using shape
is suggested.
But is it really necessary to define all the available properties there for this purpose like this?
DEMO.propTypes = {
style: React.PropTypes.shape({
color: React.PropTypes.string,
fontSize: React.PropTypes.number,
...
})
};
Too much definition code!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…