jsx-props-no-spread-multi
NOTE: this rule is included the following rule sets:
recommended
react
jsx
Enable full set in
deno.json
:{ "lint": { "tags": ["recommended"] // ...or "react", "jsx" } }
Enable full set using the Deno CLI:
deno lint --tags=recommended # or ... deno lint --tags=react # or ... deno lint --tags=jsx
Spreading the same expression twice is typically a mistake and causes unnecessary computations.
Invalid:
<div {...foo} {...foo} />
<div {...foo} a {...foo} />
<Foo {...foo.bar} {...foo.bar} />
Valid:
<div {...foo} />
<div {...foo.bar} a />
<Foo {...foo.bar} />