sindresorhus / eslint-plugin-unicorn

More than 100 powerful ESLint rules

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`prefer-spread` should not report on optional chaining

JounQin opened this issue · comments

scopeManager?.scopes.slice()

The fix will error on runtime:

[...scopeManager?.scopes]

Note: Add test for (scopeManager?.scopes).slice() when work on it.