From 20a6775eefde46f9e1b60491741d852d8ec3b636 Mon Sep 17 00:00:00 2001 From: Vincent Klaiber Date: Sun, 1 Oct 2017 17:34:26 +0200 Subject: [PATCH] Added .editorconfig file Added .editorconfig file to help editors know what syntax styling you prefer. --- .editorconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1492202 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.yml] +indent_style = space +indent_size = 2