From 38065521af77e50825ab5c737f6f28c7e429f0ae Mon Sep 17 00:00:00 2001 From: Wesley Yan <39544037+wesleyylg928392839@users.noreply.github.com> Date: Tue, 27 Jan 2026 15:57:15 +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 00000000..bf0ea8ef --- /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