From 12226017075a536b2bfd73fb505b80958132c82b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Kr=C3=A4mer?= Date: Thu, 19 Nov 2015 00:47:01 +0100 Subject: [PATCH] Adding .editorconfig --- .editorconfig | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..f47c52c5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,28 @@ +; This file is for unifying the coding style for different editors and IDEs. +; More information at http://editorconfig.org + +root = true + +[*] +indent_style = tabs +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8 + +[*.js] +indent_style = tabs +indent_size = 4 + +[*.css] +indent_style = tabs +indent_size = 4 + +[*.bat] +indent_style = tabs +indent_size = 4 +end_of_line = crlf + +[*.yml] +indent_style = tabs +indent_size = 4