From de3420d77d47d2a94ace298567930dd63554d003 Mon Sep 17 00:00:00 2001 From: Martin Blazik Date: Sat, 20 Feb 2021 10:31:17 +0100 Subject: [PATCH] Add EditorConfig --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..750b534 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +root = true + +[*] +charset=utf-8 +end_of_line = lf +trim_trailing_whitespace=true +insert_final_newline = true + +[*.sh] +indent_style = space +indent_size = 2 + +[*.py] +indent_style = tab +indent_size = 4 + +