From 9c2c5e369b02e27364aea0db34bf7780e3fd5da6 Mon Sep 17 00:00:00 2001 From: Marco Biedermann Date: Mon, 9 Feb 2015 22:24:11 +0100 Subject: [PATCH 1/2] 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..9d5248e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false From 54301c96f3f1103e0b72f7f15ce69040ea2daa41 Mon Sep 17 00:00:00 2001 From: Marco Biedermann Date: Tue, 10 Feb 2015 18:44:38 +0100 Subject: [PATCH 2/2] indent using 4 spaces --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 9d5248e..dcd93a5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,7 +5,7 @@ root = true [*] charset = utf-8 end_of_line = lf -indent_size = 2 +indent_size = 4 indent_style = space insert_final_newline = true trim_trailing_whitespace = true