From 811133a63f279977dbb1c5f04f7ea10dfcfea520 Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Fri, 5 Nov 2021 21:36:07 -0500 Subject: [PATCH] added EditorConfig file --- .editorconfig | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..a13612c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +# EditorConfig helps developers define and maintain consistent +# coding styles between different editors and IDEs +# EditorConfig is awesome: https://EditorConfig.org + +root = true + + +[*] +end_of_line = lf +charset = utf-8 +insert_final_newline = true +indent_style = tabs +indent_size = 4 + +[*.txt] +indent_style = tab +indent_size = 4 + +[*.{diff,md}] +trim_trailing_whitespace = false