From 07f8edcc262ddbc003c24ef242279aeec1a89a55 Mon Sep 17 00:00:00 2001 From: Callum Macrae Date: Sat, 9 Aug 2014 17:31:12 +0200 Subject: [PATCH] [ticket/12951] Added editorconfig PHPBB3-12951 --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..98ab9f5759 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# EditorConfig is awesome: http://EditorConfig.org + +root = true + +[*] +end_of_line = lf +indent_size = 4 +indent_style = tab +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.yml] +indent_size = 4 +indent_style = space