From cf4ded2ed5d730475daaf11fd74981645e72d406 Mon Sep 17 00:00:00 2001 From: Jaro-c <75870284+Jaro-c@users.noreply.github.com> Date: Wed, 24 Jun 2026 19:09:56 -0500 Subject: [PATCH 1/2] chore: align .editorconfig with the tabs/spaces standard The YAML rule used an invalid glob ([*.yml, *.yaml]) so it never applied and YAML stayed on tabs; fixed to [*.{json,yml,yaml}] spaces. Signed-off-by: Jaro-c <75870284+Jaro-c@users.noreply.github.com> --- .editorconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.editorconfig b/.editorconfig index 8ce8fd2..83db792 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,11 +7,11 @@ end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true +max_line_length = 120 -[*.md] +[*.{json,yml,yaml}] indent_style = space indent_size = 2 -[*.yml, *.yaml] -indent_style = space -indent_size = 2 +[*.md] +trim_trailing_whitespace = false From a0e181046c3a19e44606532fd9eec245938f5173 Mon Sep 17 00:00:00 2001 From: Jaro-c <75870284+Jaro-c@users.noreply.github.com> Date: Thu, 25 Jun 2026 08:49:53 -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