You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
apply is a common function name (e.g. Ramda) but ESLint prefer-reflect rule is not very smart about detecting usage of Function.apply. Namely, if trips upon any .apply(...) regardless of its coming from Function or Ramda. This is annoying because of the frequency of apply. We should use the exception feature of prefer-reflect to disable tripping on apply.
The text was updated successfully, but these errors were encountered:
apply
is a common function name (e.g. Ramda) but ESLintprefer-reflect
rule is not very smart about detecting usage ofFunction.apply
. Namely, if trips upon any.apply(...)
regardless of its coming fromFunction
orRamda
. This is annoying because of the frequency ofapply
. We should use the exception feature ofprefer-reflect
to disable tripping onapply
.The text was updated successfully, but these errors were encountered: