From 99db1bda7837fc84ceda0a5d94962b2b1f6152c1 Mon Sep 17 00:00:00 2001 From: Alex Jover Date: Tue, 28 Mar 2017 11:03:40 +0200 Subject: [PATCH] Feature/add editorconfig (#36) * Add editorconfig In order to avoid EOL, indents and all that stuff across IDE's, having an editorconfig solves it * Fix some changes --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..05af541 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +#root = true + +[*] +indent_style = space +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +max_line_length = 100 +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false \ No newline at end of file