From 0a40be5420d4c3e9db4f37cc9a57bdc719e48d1a Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Tue, 26 Oct 2021 11:01:38 +0200 Subject: [PATCH] Add .editorconfig for space indentation https://editorconfig.org/ assists configuring a text editor to have the proper indentation. Change-Id: Ieda9a81042ab96bbae94fe627dca466e5ae3d69a --- .editorconfig | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..626591b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,8 @@ +root = true + +[*] +indent_style = space +indent_size = 4 + +[*.yaml] +indent_size = 2