import { of } from "rxjs";
import { tap } from "rxjs/operators";
         ~~~                                        [no-tap]
import { tap as tapAlias } from "rxjs/operators";
         ~~~                                        [no-tap]
const ob = of(1).pipe(
    tap(value => console.log(value)),
    tapAlias(value => console.log(value))
);

[no-tap]: RxJS do/tap operator is forbidden
