Files
oak-gpui/docs/src/languages/elm.md
T
Marshall Bowers 3a5d116ffe docs: Update language docs and include links in the sidebar (#13828)
This PR updates the supported language docs and adds them to the sidebar
for better discoverability.

Release Notes:

- N/A
2024-07-04 11:08:38 -04:00

731 B

Elm

Elm support is available through the Elm extension.

Setting up elm-language-server

Elm language server can be configured in your settings.json, e.g.:

{
  "lsp": {
    "elm-language-server": {
      "initialization_options": {
        "disableElmLSDiagnostics": true,
        "onlyUpdateDiagnosticsOnSave": false,
        "elmReviewDiagnostics": "warning"
      }
    }
  }
}

elm-format, elm-review and elm need to be installed and made available in the environment or configured in the settings. See the full list of server settings here.