From b78bd53505ce7bf9d2725af60f6da66a929e7d5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Prunayre?= Date: Mon, 11 Apr 2016 22:11:48 +0200 Subject: [PATCH] Add .editorconfig. (#1517) --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000000..ddd51953599 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.java] +indent_size = 4 + +[*.md] +indent_size = 2 +trim_trailing_whitespace = false