Sergii Lavrin

Results 107 issues of Sergii Lavrin

Hi @stephanmax! Following html: ```html ``` will throw an error: ![chrome_2017-06-22_22-11-55](https://user-images.githubusercontent.com/4460311/27451489-d62c13b2-5797-11e7-996c-a0b56117fe2c.png) It seems that plugin doesn't ignore remote files.

Is there any chances we'll see ST3 support? Thanks

Thanks for the lib! I wonder, is it possible somehow to detect is emitter already running? Or make so that invoking emitter second time (when it is already running) will...

Some projects uses another gettext function names, like, `_t()` for singular forms and `_pt()` for plurals, etc. Is there any chances to see ability pass to jsxgettext object which will...

It's great that plurals were finally implemented. I believe there left only one crucial piece, without which most projects will suffer: domain or context. Those are: ``` // domain dgettext...

### singular - [x] `gettext( key )` ### plural ~~https://github.com/zaach/jsxgettext/issues/51~~ - [x] `ngettext( singular_key, plural_key, value )` ### domain https://github.com/zaach/jsxgettext/issues/94 - [ ] `dgettext( domain, key )` - [ ]...

Hi It seems that Nunjucks inline if statement causing error in parsing: Whenever I try to parse that file https://github.com/LotusTM/Kotsu/blob/master/source/layouts/_layout.nj it throughs following error: ``` λ grunt abideExtract Running "abideExtract:html"...

### Version `3.2.23` ### The issue Let's take an example: ```js const Price = t.union([t.Number, t.struct({ from: t.Boolean, value: t.Number }, { name: 'PriceObject', strict: true })) ``` Looks clean...

### Version `3.2.23` ### Expected behaviour It would be great to have ability to declare dispatch immediately as part of union: ```js const Offer = t.union([FreeOffer, SimplifiedOffer], 'Offer', (x) =>...

### Version `2.4.0` ### Case When defining model it isn't unusual to have a recursive structure, where one type circularly depends on another type. Consider this: Each `Entity` requires to...