From 7d182dbdbac77cfdf863875de3ac9a62118cc8fa Mon Sep 17 00:00:00 2001 From: Andrew Krasichkov Date: Sat, 13 May 2017 13:39:21 +0300 Subject: [PATCH] Added editorconfig --- .editorconfig | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..abd7688 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +root = true + +[*] +end_of_file = lf +insert_final_newline = true + +[*.{py,j2}] +charset = utf-8 + +[*.py] +indent_style = space +indent_size = 4 + +[Makefile] +indent_style = tab + +[.travis.yml] +indent_style = space +indent_size = 2