sindresorhus/eslint-plugin-unicorn
`no-useless-fallback-in-spread`: Support ternary
Chiusa
#1861 aperta il 19 lug 2022
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})}