elm-language-server
elm-language-server copied to clipboard
Language Server for Elm
We should be able to get type information given a canonical AST and a line and column number. We can do this straightforwardly by doing the following: - [ ]...
We should be able to get the original place a variable was defined given a canonical AST and a line and column number. To do this, we should be able...
When creating a new elm file, the server crashes on startup. I think this has to do with the fact that the file is empty, but this is unconfirmed.
This language server should be able to respond with diagnostics from [elm analyse](https://github.com/stil4m/elm-analyse) of a specific file. For this we'd need the following: * Search for elm-analyse locally (in node_modules...
This language server should be able to format the source-code of a specific file. For this we'd need the following: - Search for elm-format locally (in node_modules if it exists)...