From 8d1e95e5b403d05b5f4d71cbda530ff25ee4deac Mon Sep 17 00:00:00 2001 From: Midgard Date: Fri, 24 Jan 2020 15:23:10 +0100 Subject: [PATCH] Add editorconfig for indentation uniformity --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..6596fa2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# https://editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = tab + +[*.py] +indent_style = space +indent_size = 4