From 12031e804c77225f2b79c292f093a22e27cd7d5a Mon Sep 17 00:00:00 2001 From: CoderCow Date: Mon, 22 Jul 2013 10:13:44 +0200 Subject: [PATCH] Added .editorconfig, might cause a bit less identation / line ending mess. It will automatically set the given settings in the used text editor if the Editor Config plugin is installed (available for several text editors), info: http://editorconfig.org/ --- .editorconfig | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..14864433 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +end_of_line = crlf +insert_final_newline = false + +[*.cs] +indent_style = tab +trim_trailing_whitespace = true \ No newline at end of file