From 292226b2675c91242c4efc8e2cfa05af670a9ea4 Mon Sep 17 00:00:00 2001 From: vrde Date: Thu, 3 Mar 2016 15:07:47 +0100 Subject: [PATCH] Add .editorconfig file --- .editorconfig | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8f92d67 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +# EditorConfig is awesome: http://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +charset = utf-8 + +[*.{md,py}] +max_line_length = 79 + +# 4 space indentation +[*.py] +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true +insert_final_newline = true