Maxime Kjaer

Results 20 comments of Maxime Kjaer

I think the easiest workaround here would be to up-cast the socket to an `EventEmitter`, using `as EventEmitter`. For the RxJS typings, I think a `Socket` fits best with `NodeCompatibleEventEmitter`,...

Small rectification: you would probably need to cast to the Node.js `EventEmitter` on the server-side, and to `Emitter` from the `component-emitter` dependency on the client-side.

What version of TypeScript are you using? I tried replicating the behavior in a small toy example based on the RxJS source code you linked to, but it seems to...

Not to my knowledge. I've been able to get rid of the problem by downgrading from `jekyll-3.0.0.pre.beta8` to `jekyll-2.5.3` for the time being... (though that means going back to dealing...

@nbolten I'm having some real trouble replicating this. It happened without jekyll-archive (I somehow overlooked that this was a jekyll/jekyll-archives, and not jekyll/jekyll issue page, so I don't know if...

One curious thing is that the error message mentions ABI version 75. According to the [Node release page](https://nodejs.org/en/download/releases/), 12.16.2 has ABI version 72. Could this error perhaps be due to...

I think we can implement something that highlights *some* function calls as `meta.function-call`, but this would only be an approximation of coloring all function calls. The simplest heuristic we can...

I think we may need the `extends` keyword to push us into a new state, say `#parent-classes`. Would there always be a clear end token to this state, like `:`...

I am indeed planning to open a PR based on the argument in that link quite soon :wink:

I could add the [`SortImports` scalafmt rewrite rule](https://scalameta.org/scalafmt/docs/configuration.html#sortimports), but note that this only sorts imports within curly brackets, not import statements (see scalameta/scalafmt#722). For sorting import statements, we would need...