From 55a0bb2a911a6af7760499b3ab79778388352299 Mon Sep 17 00:00:00 2001 From: Ivan Banov Date: Tue, 6 May 2025 09:14:02 +0200 Subject: [PATCH] Add default tab_size for Elm (#29547) This PR updates the default tab size to 4 spaces, aligning with the standard adopted by the Elm community and the official language formatter (elm-format). Reference: [elm-format tab size default](https://github.com/avh4/elm-format/blob/main/elm-format-lib/src/Box.hs#L249) --- assets/settings/default.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/assets/settings/default.json b/assets/settings/default.json index 06edea6f89f868f414392251b5fee89012fec5ce..d58ddd0ef8580162e0e6161fc03fffe6a40befd8 100644 --- a/assets/settings/default.json +++ b/assets/settings/default.json @@ -1322,6 +1322,9 @@ "Elixir": { "language_servers": ["elixir-ls", "!next-ls", "!lexical", "..."] }, + "Elm": { + "tab_size": 4 + }, "Erlang": { "language_servers": ["erlang-ls", "!elp", "..."] },