Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 835 Bytes

jsx-no-duplicate-props.md

File metadata and controls

37 lines (23 loc) · 835 Bytes

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

💼 This rule is enabled in the ☑️ recommended config.

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

Rule Details

Examples of incorrect code for this rule:

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

Examples of correct code for this rule:

<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.