From bda6a75470ceea2726f83e432d47bd44e448a1d2 Mon Sep 17 00:00:00 2001 From: Henrik Hedelund Date: Sun, 30 Oct 2016 11:40:30 +0100 Subject: [PATCH] Add .editorconfig --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..af725c6 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space +indent_size = 4 + +[*.md] +trim_trailing_whitespace = false + +[.travis.yml] +indent_size = 2