From a44cabf786b4087a038224fc0c0b6dba3204799a Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Wed, 6 Dec 2017 22:21:26 -0500 Subject: [PATCH] Added EditorConfig support. [skip ci] (#78) Fixes #68. --- .editorconfig | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000000..0983572c65490 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,22 @@ +# http://editorconfig.org + +root = true + +[*] +charset = utf-8 +indent_style = space + +[BUILD] +indent_size = 4 + +[CMakeLists.*] +indent_size = 4 + +[*.h,*.cc] +indent_size = 2 + +[*.md] +indent_size = 2 + +[*.sh] +indent_size = 2