From c2baf5f2e303bc40ac370293c82927578b0ac3e4 Mon Sep 17 00:00:00 2001 From: Pascal Hertleif Date: Fri, 15 Jul 2016 13:08:21 +0200 Subject: [PATCH] Add EditorConfig --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..3a8d3f7d8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +# EditorConfig helps developers define and maintain consistent +# coding styles between different editors and IDEs +# editorconfig.org + +root = true + +[*] +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +indent_style = space +indent_size = 4 + +[*.md] +trim_trailing_whitespace = false