From 5e39294a6d7047beb39b4fde9b5cadc8d21a2eb7 Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Tue, 30 Jan 2024 18:21:51 -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