aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDhruv Goel <dhruv.goel92@gmail.com>2014-08-12 16:15:47 +0200
committerDhruv Goel <dhruv.goel92@gmail.com>2014-08-12 16:15:47 +0200
commit1dc2d0e759a622b04c94b089ec980857595fa7bf (patch)
treec7f740d76d80ab365f3816a18c59b1e9608d753d
parente47b7540c3def5635bd33614122c70f13588580c (diff)
parent7df97601a3969d31407e24fde24c31da464c10e2 (diff)
downloadforums-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--.editorconfig18
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