From a39cbc104eea20587e4ef6a1b1709fe5951679dc Mon Sep 17 00:00:00 2001 From: digitalcraftsman Date: Thu, 18 Jun 2015 18:33:50 +0200 Subject: [PATCH] Added .editorconfig --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1b55586 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# editorconfig.org + +root = true + +[*] +charset = utf-8 +indent_size = 2 +indent_style = space +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{html,css,js,yaml,toml,json}] +indent_size = 4