From 1c5096833362af16da332f1477e94e329e2fe21c Mon Sep 17 00:00:00 2001 From: Benjamin Staneck Date: Fri, 24 May 2019 20:20:17 +0200 Subject: [PATCH] add .editorconfig file (#585) * add .editorconfig file * drop charset from editorconfig * Update .editorconfig Co-Authored-By: Michael Niksa --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..40de22df5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*] +trim_trailing_whitespace = true +insert_final_newline = true + +[{*.cpp,*.c,*.hpp,*.h,*.cs}] +indent_style = space +indent_size = 4 + +[*.json] +indent_style = space +indent_size = 2