From 7e7a1a05e08c35630b08d742fa7447f3105b0720 Mon Sep 17 00:00:00 2001 From: Rod Elias Date: Thu, 13 Oct 2022 19:04:21 -0300 Subject: [PATCH] Add .editorconfig file See: https://editorconfig.org/ --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..a7c44ddb --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +indent_size = 4 +indent_style = space +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2