Jesper Engberg

Results 37 comments of Jesper Engberg

This does not necessarily mean that something is wrong: https://github.com/codota/tabnine-vscode/blob/master/src/binary/binaryFetcher/binaryValidator.ts#L16-L19 The timeout is never cancelled, hence always errors. In most cases, `readLine.once("line")` just calls `resolve(true)` first.

Update: The same applies to any subsequent requests after manually mounting the hub: ![image](https://user-images.githubusercontent.com/51749023/188218594-96bace98-169a-49ee-9d71-5b6bcacffc86.png)

Another solution would be binding TabNine to a different address (0.0.0.0), and provide a config option to the extension that allows overwriting the base path. This would allow docker to...

Hello, unfortunately, as far as I can tell, the exactly same error still occurs. I would like to confirm the version, but ![image](https://user-images.githubusercontent.com/51749023/198605128-89bd453a-a9b4-48d9-8a24-7c436ca31a8d.png) (according to the extension view however, I...

Just sharing crude ideas: In order to skip parsing entirely, it'd need to work with plaintext, perhaps a good solution would be something like: ``` for line of source file:...

The immediate motivation for this issue is [this bug](https://github.com/typescript-eslint/typescript-eslint/issues/8261) in a rule that crashes ESLint when the file is processed. A speed boost is a tiny benefit on the side....

> It's prone to false positives. For example, if such an /* eslint-ignore-file */ comment appears in a template string or somewhere in an .md file, then the whole file...

> I think your pseudocode would match that commant in any line, not just in the first one? Many formats don't even allow JavaScript style block comments at the top...

I will look into it and hand over the task once my limited understanding of ESLint's internals is exhausted 👍🏻