From 6842239812bf66b9f3b7f94c1955c298998b1502 Mon Sep 17 00:00:00 2001 From: Arpad Csanyi Date: Wed, 20 Jul 2016 22:36:46 +0200 Subject: [PATCH] Add editorconfig file to standardize basic coding styles. --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..72823b8e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# editorconfig.org + +root = true + +[*] +charset = utf-8 +indent_size = 4 +indent_style = space +endofline = lf +trim_trailing_whitespace = true +insert_final_newline = true