From 7bbec7a6ba63f85e4e0894b13249f06e02535598 Mon Sep 17 00:00:00 2001 From: Jaro-c <75870284+Jaro-c@users.noreply.github.com> Date: Wed, 24 Jun 2026 19:09:42 -0500 Subject: [PATCH] chore: add an .editorconfig Enforce the org style rules in-editor: tabs width 4 everywhere, spaces for YAML/JSON, keep Markdown trailing whitespace. Signed-off-by: Jaro-c <75870284+Jaro-c@users.noreply.github.com> --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..83db792 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +root = 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 = 2 + +[*.md] +trim_trailing_whitespace = false