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
The rule rxjs-x/no-sharereplay-before-takeuntil is very good, and highlights an issue that's very easy to cause.
The weakness is that there might be other methods which wraps takeUntil() and is prone for the same issue. In Angular you have the operator takeUntilDestroyed(), for example.
I imagine it could be an option "alias" which allows specifying methodnames that are also treated as takeUntil() for this rule.