From 7711e42392c41f4e04f3fdbef01a71923658bdbc Mon Sep 17 00:00:00 2001 From: Decebal Suiu Date: Fri, 5 Jun 2015 16:29:44 +0300 Subject: [PATCH] add initial version for .editorconfig (see http://editorconfig.org/) --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ea437c8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# Pippo code formatting styles +# Checkout http://editorconfig.org/ for more information and how to use it + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +indent_size = 4 + +#[{*.java,*.xml,*.js,*.css] +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false -- 2.39.5