From 21322580117e900903fec42193b38770752b3413 Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Mon, 8 Jan 2024 19:50:32 +0100 Subject: [PATCH] Add EditorConfig (#584) --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..302cfc4 --- /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