From 631baeafd24b8b1e3e219111dd70d04d0a478caa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 7 Jul 2013 11:16:59 +0200 Subject: [PATCH] added EditorConfig support http://editorconfig.org --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..47ff6e8918 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +; Top-most http://editorconfig.org/ file +root = true + +; Unix-style newlines +[*] +end_of_line = LF + +; 4-column tab indentation +[*.cs] +indent_style = tab +indent_size = 4 + +; 4-column tab indentation +[*.yaml] +indent_style = tab +indent_size = 4 \ No newline at end of file