From 227b7dd7919fc2ade06535322e0fd01211aad8fb Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sat, 12 Aug 2017 23:24:40 +0200 Subject: [PATCH] :newspaper: Add .gitignore file The .editorconfig file will support the consistancy of files --- .editorconfig | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..7a125700 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true +ident_size = 4 + +[*.md] +ident_size = 2 +trim_trailing_whitespace = false + +[*.json] +ident_size = 2 + +[{.gitignore,.gitkeep,.editorconfig}] +ident_size = 2