From b5c551b9bcb2ef838be3832b9d734152d8d15818 Mon Sep 17 00:00:00 2001 From: Bruno Casali Date: Tue, 13 Oct 2020 23:01:53 -0300 Subject: [PATCH] Add a standard configuration to every contributor follow --- .editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..029f294d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.{md,markdown}] +trim_trailing_whitespace = false