From 5a18ccc0a8fb43fb4b7797cebc2ae4dd980a8afb Mon Sep 17 00:00:00 2001 From: leroy0715 <40634737+leroy0715@users.noreply.github.com> Date: Fri, 30 Jan 2026 12:50:49 +0100 Subject: [PATCH] Create .editorconfig MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dropped in an EditorConfig so everyone’s editor stops fighting over whitespace and line endings. --- .editorconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..bf0ea8ef1 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.yml] +indent_style = space +indent_size = 2 + +[*.yaml] +indent_style = space +indent_size = 2