Bug 12545: Add EditorConfig.org file to the source tree
authorTomas Cohen Arazi <tomascohen@gmail.com>
Wed, 9 Jul 2014 14:23:41 +0000 (11:23 -0300)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Fri, 22 Aug 2014 14:07:45 +0000 (11:07 -0300)
This patch adds a .editorconfig file to the source tree, that
enforces some of our coding guidelines.

Some editors try to detect the desired configurations from the currently
opened file. As we have tons of old code that doesn't follow our current
coding guidelines, this can lead to unintended QA problmes.

To test:
- Apply the patch
- Verify the .editorconfig file is in the top-level directory
- See the .editorconfig file expresses our coding guidelines

Regards
To+

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>

Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>

.editorconfig [new file with mode: 0644]

diff --git a/.editorconfig b/.editorconfig
new file mode 100644 (file)
index 0000000..95c4e45
--- /dev/null
@@ -0,0 +1,12 @@
+# top-most EditorConfig file (http://editorconfig.org)
+root = true
+
+[*]
+# Unix-style newlines with a newline ending every file
+end_of_line = lf
+insert_final_newline = true
+# 4 space indentation
+indent_style = space
+indent_size = 4
+# New files charset should be UTF-8
+charset = utf-8