From 6dcf254a246a150a3010f440828d7dd1fa8ece87 Mon Sep 17 00:00:00 2001 From: June Date: Sat, 23 Nov 2024 02:11:48 +0100 Subject: [PATCH] add .editorconfig to ensure some style and format consistency --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..4ca5f7c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +charset = utf-8 + +[*.md] +indent_size = 2 +trim_trailing_whitespace = false + +[*.yaml] +indent_size = 2