Creating JSX elements with duplicate props can cause unexpected behavior in your application.
Examples of incorrect code for this rule:
<Hello name="John" name="John" />;Examples of correct code for this rule:
<Hello firstname="John" lastname="Doe" />;...
"react/jsx-no-duplicate-props": [<enabled>, { "ignoreCase": <boolean> }]
...When true the rule ignores the case of the props. Default to false.
If you are not using JSX then you can disable this rule.