From afa9f212f4090b93b4412441e85b2b0d84bfde66 Mon Sep 17 00:00:00 2001 From: Ralph Sennhauser Date: Wed, 4 Sep 2024 19:42:51 +0200 Subject: [PATCH] Add yaml setting to editorconfig Currently all files adhere to the same formatting, let's codify it so it stays like this in the future. Signed-off-by: Ralph Sennhauser --- .editorconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.editorconfig b/.editorconfig index efad736933..06bc7028ea 100644 --- a/.editorconfig +++ b/.editorconfig @@ -10,5 +10,9 @@ indent_style = tab function_next_line = true switch_case_indent = true +[*.{yaml,yml}] +indent_style = space +indent_size = 2 + [build/premake/premake5/**] ignore = true