From 17a9c14bf3bd8f30ea49bc1c612f8c29696e70ac Mon Sep 17 00:00:00 2001 From: Romain Ruetschi Date: Mon, 16 Apr 2018 21:22:01 +0200 Subject: [PATCH] Add EditorConfig configuration file --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..3a8d3f7 --- /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