From 33e84b2820a186b6f3cedb3dfc85ffb6fdad6c8d Mon Sep 17 00:00:00 2001 From: Konstantinos Paparas Date: Tue, 27 Nov 2018 17:50:54 +0100 Subject: [PATCH] Adds .editorconfig --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..612e3063 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = false +charset = utf-8 +indent_style = space +indent_size = 4 + +[*.{js, py}] +trim_trailing_whitespace = true + +[*.{yml, yaml, json}] +indent_size = 2