From 3a09bdf811e5a979de8b4fc27f5379af95535cd1 Mon Sep 17 00:00:00 2001 From: emersion Date: Tue, 29 May 2018 11:31:41 +0100 Subject: [PATCH] Add .editorconfig --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..b6b6a36 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +indent_style = tab +indent_size = 4 +trim_trailing_whitespace = true + +[*.xml] +indent_style = space +indent_size = 2 +tab_width = 8