From 2b2b017cab0ab9858ff6c51dd0d93b304f59c7c3 Mon Sep 17 00:00:00 2001 From: Michal Kordas Date: Mon, 28 Sep 2015 21:21:02 +0200 Subject: [PATCH] Add EditorConfig configuration with basic code style --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..6ced46e4 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# EditorConfig helps developers to maintain consistent coding styles between different editors and IDEs. +# For more information about the properties used in this file, please see http://editorconfig.org/. + +root = true + +[*] +charset = utf-8 +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true