This rule prevents passing of props to elements. This rule only applies to DOM Nodes (e.g. <div />
) and not Components (e.g. <Component />
). The list of forbidden props can be customized with the forbid option.
// [1, { "forbid": ["id"] }]
<div id='Joe' />
// [1, { "forbid": ["style"] }]
<div style={{color: 'red'}} />
// [1, { "forbid": ["id"] }]
<Hello id='foo' />
// [1, { "forbid": ["id"] }]
<Hello id={{color: 'red'}} />