From 3c9bf12a5fcc4ce21d90d7d722e3a9413b14ed7e Mon Sep 17 00:00:00 2001 From: Adrien Loison Date: Tue, 14 Apr 2015 20:16:41 -0700 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..1485c5e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true +insert_final_newline = true + +[{.travis.yml}] +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false