From 6a48d956612307349cb0aece9e1da488fcc52b95 Mon Sep 17 00:00:00 2001 From: Hobie Cunningham <121536171+Hobie1Kenobi@users.noreply.github.com> Date: Mon, 25 May 2026 12:38:39 -0500 Subject: [PATCH] feat: add root-level .editorconfig for contributor consistency --- .editorconfig | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..eeacdf4334 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +# EditorConfig: https://editorconfig.org +# Root-level configuration for contributor consistency + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 2 +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{json,yml,yaml}] +indent_size = 2 + +[Makefile] +indent_style = tab