From f09b4c02007811a9d911628988af60907a7ad2f5 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Fri, 21 Aug 2020 11:17:50 +0300 Subject: [PATCH] Add EditorConfig file More info here: https://editorconfig.org/ --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8748282 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +indent_style = space +indent_size = 4