sindresorhus/eslint-plugin-unicorn

`no-useless-fallback-in-spread`: Support ternary

Chiusa

#1861 aperta il 19 lug 2022

 (4 commenti) (7 reazioni) (0 assegnatari)JavaScript (468 fork)user submission
enhancementhelp wanted

Metriche repository

Star
 (5022 stelle)
Metriche merge PR
 (Merge medio 4h 30m) (26 PR mergiate in 30 g)

Descrizione

The rule currently does not detect ternary like this:

{...(foo ? {bar: true} : {})}

This can be safely be reduced to

{...(foo && {bar: true})}

Guida contributor