From 12f6a57ee60a4f0447ca3712e30b4bd12698555d Mon Sep 17 00:00:00 2001 From: Jaro-c <75870284+Jaro-c@users.noreply.github.com> Date: Wed, 24 Jun 2026 19:07:21 -0500 Subject: [PATCH 1/2] chore: align .editorconfig with the tabs/spaces standard YAML/JSON were on indent_size 4; the standard is 2. Signed-off-by: Jaro-c <75870284+Jaro-c@users.noreply.github.com> --- .editorconfig | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.editorconfig b/.editorconfig index 23caad5..83db792 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,13 +1,17 @@ root = true [*] -charset = utf-8 -end_of_line = lf -insert_final_newline = true -trim_trailing_whitespace = true indent_style = tab indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 120 [*.{json,yml,yaml}] indent_style = space -indent_size = 4 +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false From f67e0b1869759e194558ae7570db884d1d7c9be4 Mon Sep 17 00:00:00 2001 From: Jaro-c <75870284+Jaro-c@users.noreply.github.com> Date: Thu, 25 Jun 2026 08:49:51 -0500 Subject: [PATCH 2/2] chore: keep Markdown on spaces in .editorconfig A leading tab in CommonMark counts as a 4-column indent, so tab-indented content inside a list renders as an accidental code block. Pin Markdown to spaces (width 2) to avoid that. Signed-off-by: Jose <75870284+Jaro-c@users.noreply.github.com> --- .editorconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 83db792..082123a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -14,4 +14,6 @@ indent_style = space indent_size = 2 [*.md] -trim_trailing_whitespace = false +indent_style = space +indent_size = 2 +trim_trailing_whitespace = false \ No newline at end of file