From 9b653b9dcb8bfaf29f06d374a70f81524be1812e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Kope=C4=87?= Date: Sun, 28 Feb 2016 18:33:39 +0100 Subject: [PATCH] Add .editorconfig file --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..9582a3cc --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true + +[*.{js, json, sh, yml, gemspec}] +indent_style = space +indent_size = 2 + +[{Rakefile, .jshintrc}] +indent_style = space +indent_size = 2 + +[*.{py}] +indent_style = space +indent_size = 4