From 8ed2a03238cb5b379db870f10f52f26236b4932e Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Mon, 7 Nov 2016 11:58:34 +0100 Subject: [PATCH] adds editor config --- .editorconfig | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..db524f7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 + +[*.py] +line_length = 79 +multi_line_output = 4 +balanced_wrapping = true +use_parentheses = true + +[*.json, *.yml, *rc] +indent_size = 2 + +[Makefile] +indent_style = tab +indent_size = 4 \ No newline at end of file