From 847bfadbed46005130e698d71ea5f3771bc1e5da Mon Sep 17 00:00:00 2001 From: Birditch <73741466+Birditch@users.noreply.github.com> Date: Sat, 2 May 2026 00:50:30 -0400 Subject: [PATCH] chore: add .editorconfig for cross-editor consistency --- .editorconfig | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d992d0b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,27 @@ +; Top-most EditorConfig file for NetMedic. +; https://editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 + +[*.{md,markdown}] +trim_trailing_whitespace = false + +[*.{yml,yaml,json,toml}] +indent_size = 2 + +[*.{ps1,psm1}] +end_of_line = crlf + +[Makefile] +indent_style = tab + +[*.rb] +indent_size = 2