jsx-no-duplicate-props.md 670 B

Prevent duplicate properties in JSX (react/jsx-no-duplicate-props)

Creating JSX elements with duplicate props can cause unexpected behavior in your application.

Rule Details

The following patterns are considered warnings:

<Hello name="John" name="John" />;

The following patterns are not considered warnings:

<Hello firstname="John" lastname="Doe" />;

Rule Options

...
"react/jsx-no-duplicate-props": [<enabled>, { "ignoreCase": <boolean> }]
...

ignoreCase

When true the rule ignores the case of the props. Default to false.

When Not To Use It

If you are not using JSX then you can disable this rule.