Install
-
Install the package:
npm install --dev eslint-plugin-injected-proptypes
yarn add --dev eslint-plugin-injected-proptypes
-
Add
"plugins": ["injected-proptypes"]
to your eslint config file.
Prevent missing propTypes in React components (non-injected-prop-types)
This rule ensures that all your React components have propTypes set for all of their used properties.
However, it ignores common injected properties such as those introduced by Redux's mapDispatchToProps
and
mapStateToProps
. See eslint-plugin-react/#553
for more details.
Rule Details
Examples of incorrect code for this rule:
const Foo = <span> propMissingType </span>;
Examples of correct code for this rule:
const Foo = <span> providedProp injectedProp </span>; const mapStateToProps = injectedProp: statefooBar; FoopropTypes = providedProp: PropTypesstringisRequired; mapStateToPropsFoo;
Options
Consult the documentation for the original rule here: https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/prop-types.md