From 81fac33fb56d7642d50084e373a13e59b5b64688 Mon Sep 17 00:00:00 2001 From: Antoine Rey Date: Fri, 16 Oct 2015 18:20:57 +0200 Subject: [PATCH] #96 change EditorConfig in order to impact other files than Java and XML (i.e.. jsp and html pages) --- .editorconfig | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index de9af4689b5..8d67bc7a543 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,9 +1,12 @@ # top-most EditorConfig file root = true -[*.{java,xml}] +[*] charset = utf-8 +end_of_line = lf +insert_final_newline = true indent_style = space + +[*.{java,xml}] indent_size = 4 -insert_final_newline = true trim_trailing_whitespace = true