sindresorhus/eslint-plugin-unicorn
`no-useless-fallback-in-spread`: Support ternary
已关闭
#1,861 创建于 2022年7月19日
enhancementhelp wanted
仓库指标
- 星标
- (5,022 个星标)
- PR 合并指标
- (平均合并 4小时 30分钟) (30 天内合并 26 个 PR)
描述
The rule currently does not detect ternary like this:
{...(foo ? {bar: true} : {})}
This can be safely be reduced to
{...(foo && {bar: true})}