summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2017-07-23 23:23:36 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2017-07-23 23:23:36 +0200
commit9f8e6148f15d7b8bc446fde6b8d2a102843a5a59 (patch)
tree1f7b7c17899fae6d5dc0d67fe98626f3168798cb
parent9c6084163a6d061d88f597540500b7fb78c5a9a8 (diff)
Add .editorconfig file
This change adds an .editorconfig file for universal editor configuration for the project.
-rw-r--r--.editorconfig17
1 files changed, 17 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 00000000..29e7b14b
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,17 @@
+# EditorConfig helps developers define and maintain consistent
+# coding styles between different editors and IDEs
+# editorconfig.org
+root = true
+
+[*]
+indent_style = tab
+indent_size = 4
+
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+
+[*.md]
+trim_trailing_whitespace = false
+indent_style = space