Felix Becker

Results 540 comments of Felix Becker

Because you cannot configure separate _severities_. `eslint-disable` has nothing to do with this, it is easy to ban `eslint-disable` comments. What I want to do (and what was possible before)...

@ippeiukai you are doing this with multiple queries, correct? Not the fastest of course. Instead of doing a $gt on the ID I would recommend you to use `offset`. I...

> their interface is reasonably in line with the current Promise heavy APIs > > Use of offset on the other hand is known to be slow as offset gets...

So you would then be sorting by the UUID? Interesting. @mickhansen @janmeier @durango what do you think of the thenable stream idea?

Reopening because this is neither implemented nor a duplicate

I'm working on the typings for Sequelize 4.0 and it uses an approach where you subclass a `Model` class. That Model class has countless static methods like `findById()` etc. that...

@shlomiassaf It would not be inconsistent. When you specify a class as a return type for a function like User, the return type will be an instance of the user....

The problem is that it needs to be possible to type both a static method that returns a class instance and a static method that returns the class itself (typeof...

No, its not. When you define a method like ``` ts getUser(): User { ... } ``` you expect to get a User _instance_ back, not the User class (that's...

It is just a key/value file: ```env FOO=hello BAR=world ``` It can be used with the Node debugger as `envFile`: https://code.visualstudio.com/docs/nodejs/nodejs-debugging#_launch-configuration-attributes And it can be easily read into e.g. a...