I like to ban some operators to rethink the use of it like switchMap and withLatestFrom usually use concatMap and a concatLatestFrom (from ngrx) instead.
For switchMap there exist a specific rule, but not for others.
The problem I have, if I use ban-operators for these, I can not make exceptions by ignoring them on the line they are used, but have to ignore the rule on the import.
It would help if ban-operators would report the use of the operator's instead of the import.
I like to ban some operators to rethink the use of it like
switchMap
andwithLatestFrom
usually useconcatMap
and aconcatLatestFrom
(from ngrx) instead. For switchMap there exist a specific rule, but not for others. The problem I have, if I useban-operators
for these, I can not make exceptions by ignoring them on the line they are used, but have to ignore the rule on the import. It would help ifban-operators
would report the use of the operator's instead of the import.