From 2e531096877e41092ee2d0db8954935c1cebea2a Mon Sep 17 00:00:00 2001 From: Ladislas de Toldi Date: Thu, 11 Feb 2021 22:09:32 +0100 Subject: [PATCH] Add .editorconfig file --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000000..f97b8789bc7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# editorconfig.org + +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.yml] +indent_style = space +indent_size = 2