From f977cef9f6f1b109613a79c1c7c88cf1467baa22 Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Thu, 21 Dec 2023 00:20:49 -0800 Subject: [PATCH] Add EditorConfig --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..302cfc42 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_size = 4 +indent_style = tab + +[*.{md,yml,yaml}] +indent_size = 2 +indent_style = space