AlCalzone
AlCalzone
We already have something like this for the web adapter. It would be cool if 3rd party adapters could register blocks/rules the same way without requiring a JavaScript update each...
When the adapter is not running, the editor cannot load the typings and thus can't do syntax and type checking. This can be improved by... - [ ] storing the...
Besides scripts in VMs, NodeJS 9+ supports modules in VMs: https://nodejs.org/api/vm.html#vm_class_vm_module This could be used to modularize code in the JS adapter, as some users have already asked for.
**Is your feature request related to a problem? Please describe.** If there is an error in a script, e.g. with a subscription, we currently see logs like this: ``` 2020-10-15...
This should avoid questions like https://forum.iobroker.net/topic/34220/problem-zus%C3%A4tzliche-module-f%C3%BCr-javascript-nicht-verf%C3%BCgbar
We currently have typechecking forced on. We could offer two options: - typechecking on/off - ESLint on/off The latter could be integrated following [this guide](https://blog.expo.io/building-a-code-editor-with-monaco-f84b3a06deaf). Scroll down to _Using ESLint...
Disclaimer: This is not a high-priority thing. I'm willing to tackle this when I got the time. Just leaving it here so I don't forget. Currently, testing the adapter functions...
By reordering the method overloads, we can control how the autocomplete works and which overloads are shown first. This way we can first provide help for the most used overloads...
I'm starting to try this project out and really like it so far. When watching multiple TypeScript builds however, it's not clear which typecheck is which:  I think something...