From 83810039d1f2a69c61f715c44e8c01cce7fc0cdf Mon Sep 17 00:00:00 2001 From: Chris Savoie Date: Wed, 22 Aug 2018 22:19:55 -0700 Subject: [PATCH] Add editor config for 4 spaces instead of tab. --- .editorconfig | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..e38e21957 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +# editorconfig.org + +# top-most EditorConfig file +root = true + +# Default settings: +# Use 4 spaces as indentation +[*] +indent_style = space +indent_size = 4