From a6dda8f9df3e190f0f20587e6aef15e8f7fc75b1 Mon Sep 17 00:00:00 2001 From: ddavison Date: Wed, 18 Mar 2015 07:35:35 -0400 Subject: [PATCH] adding editorconfig file for consistency --- .editorconfig | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000000..1787f4fb372e7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,27 @@ +# EditorConfig helps developers define and maintain consistent +# coding styles between different editors and IDEs +# editorconfig.org + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false + +[*.java] +indent_style = space +indent_size = 4 +continuation_indent_size = 2 + +[*.py] +indent_style = space +indent_size = 4 + +[*.html] +indent_style = space +indent_size = 2