From 2bb1de95839f8557da7f38ecf853e76da418a0bb Mon Sep 17 00:00:00 2001 From: Peter Thorin Date: Wed, 19 Apr 2017 06:22:15 +0200 Subject: [PATCH] Added editorconfig to help with project style. --- .editorconfig.editorconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .editorconfig.editorconfig diff --git a/.editorconfig.editorconfig b/.editorconfig.editorconfig new file mode 100644 index 0000000..0b7e891 --- /dev/null +++ b/.editorconfig.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = crlf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.js] +indent_size = 4 + +[*.html] +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false \ No newline at end of file