Aleksandr Martirosyan
Aleksandr Martirosyan
https://github.com/angular-eslint/angular-eslint/issues/1901
I have manually tested the fix on my project but I wonder whether there is any possibility to test --fix with automated tests.
Thank you. Will add the missing test cases accordingly.
Yeah, sorry was on vacation without the pc. Will add the PR with tests tomorrow.
@JamesHenry added the missing test case, the problem is only occurring when there is a class extension but no interface implementation at all.
If you analyze the source you will see ``` export function distinctUntilChanged(comparator?: (previous: T, current: T) => boolean): MonoTypeOperatorFunction; export function distinctUntilChanged( comparator: (previous: K, current: K) => boolean, keySelector:...
I really dont think this is a bug. I see @jakovljevic-mladen tagged this as a bug but let me explain my analisis. the tap operators inner subscription has unsubscribe and...