Sasha Verbilo

Results 5 issues of 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 ![image](https://user-images.githubusercontent.com/7117660/97748004-d3f48e80-1afd-11eb-9779-096dd0287455.png)...

enhancement

### 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...

needs triage

### 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`...

area: forms
P3

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));...