When using a shape prop, with a bool prop inside, it is not checked by the rule:
static propTypes =
nest: PropTypes.shape({
eggIsWhite: PropTypes.bool, // No react/boolean-prop-naming warning here.
}),
thisIsChecked: PropTypes.bool, // react/boolean-prop-naming warning.
}
This should be fixed with https://github.com/yannickcr/eslint-plugin-react/pull/2234
This should be fixed with #2234
@ljharb should this one be closed then?
Yep, thanks :-) closed by #2234.