diff options
author | Dhruv Goel <dhruv.goel92@gmail.com> | 2014-08-12 16:15:47 +0200 |
---|---|---|
committer | Dhruv Goel <dhruv.goel92@gmail.com> | 2014-08-12 16:15:47 +0200 |
commit | 1dc2d0e759a622b04c94b089ec980857595fa7bf (patch) | |
tree | c7f740d76d80ab365f3816a18c59b1e9608d753d | |
parent | e47b7540c3def5635bd33614122c70f13588580c (diff) | |
parent | 7df97601a3969d31407e24fde24c31da464c10e2 (diff) | |
download | forums-1dc2d0e759a622b04c94b089ec980857595fa7bf.tar forums-1dc2d0e759a622b04c94b089ec980857595fa7bf.tar.gz forums-1dc2d0e759a622b04c94b089ec980857595fa7bf.tar.bz2 forums-1dc2d0e759a622b04c94b089ec980857595fa7bf.tar.xz forums-1dc2d0e759a622b04c94b089ec980857595fa7bf.zip |
Merge pull request #2853 from callumacrae/ticket/12951
[ticket/12951] Added editorconfig
-rw-r--r-- | .editorconfig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..0e7d70f2a7 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +# This file is for standardising the coding style between different editors +# 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 |