diff options
author | Callum Macrae <callum@macr.ae> | 2014-08-09 17:31:12 +0200 |
---|---|---|
committer | Callum Macrae <callum@macr.ae> | 2014-08-09 17:33:23 +0200 |
commit | 07f8edcc262ddbc003c24ef242279aeec1a89a55 (patch) | |
tree | 61f89a13a45ea69bddeb9e4ccb97ddcb7c473859 | |
parent | e4e7a8f8494922ee52d927cfcfe8b27d73452ced (diff) | |
download | forums-07f8edcc262ddbc003c24ef242279aeec1a89a55.tar forums-07f8edcc262ddbc003c24ef242279aeec1a89a55.tar.gz forums-07f8edcc262ddbc003c24ef242279aeec1a89a55.tar.bz2 forums-07f8edcc262ddbc003c24ef242279aeec1a89a55.tar.xz forums-07f8edcc262ddbc003c24ef242279aeec1a89a55.zip |
[ticket/12951] Added editorconfig
PHPBB3-12951
-rw-r--r-- | .editorconfig | 17 |
1 files changed, 17 insertions, 0 deletions
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 |