Skip to content

react/jsx-props-no-spread-multi Correctness

This rule is turned on by default.
🛠️ An auto-fix is available for this rule.

What it does

Enforces that any unique expression is only spread once.

Why is this bad?

Generally spreading the same expression twice is an indicator of a mistake since any attribute between the spreads may be overridden when the intent was not to. Even when that is not the case this will lead to unnecessary computations being performed.

Example

Examples of incorrect code for this rule:

jsx
<App {...props} myAttr="1" {...props} />

Examples of correct code for this rule:

jsx
<App myAttr="1" {...props} />
<App {...props} myAttr="1" />

References

Released under the MIT License.