Sasha Verbilo
Sasha Verbilo
Hi, Recently I've tried writing some code with 11ty in markdown and faced with something unexpectable. With block code, everything works fine. But inline code is not. This code ...
### Is this a regression? - [ ] Yes, this behavior used to work in the previous version ### The previous version in which this bug was not present was...
### Please read and mark the following check list before creating a pull request: - [x] I read and followed the [CONTRIBUTING.md](https://github.com/akveo/nebular/blob/master/CONTRIBUTING.md) guide. #### Short description of what this resolves:...
### Which @angular/* package(s) are relevant/related to the feature request? forms ### Description Currently in angular is tough to update validators dynamically. For example, I have a component with `FromControl`...
In my project I'm using `plugin:rxjs/recommended` which comes with two rules: `rxjs/no-sharereplay` and `rxjs/no-ignored-replay-buffer`. The following code is good with `rxjs/no-ignored-replay-buffer` rule and throws error with `rxjs/no-sharereplay` rule: ``` interval(1000).pipe(shareReplay(1));...