From 10609c3a198098b57c87fac0f04618f10cf7f9f2 Mon Sep 17 00:00:00 2001 From: mehrdadn Date: Mon, 20 Jan 2020 08:03:06 -0800 Subject: [PATCH] Use standard EditorConfig file for editor settings (#6861) https://editorconfig.org/ Co-authored-by: GitHub Web Flow --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..3bc651366 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*] +end_of_line = lf + +[*.py] +indent_style = space +indent_size = 4 +wrap_width = 80 + +[*.{hpp,hxx,h,cpp,cxx,cc,c}] +indent_style = space +indent_size = 2 +wrap_width = 90