From 409dd52c40030ff6255300655625eb84bacbca6e Mon Sep 17 00:00:00 2001 From: Timo Michna Date: Thu, 30 Jun 2022 02:51:21 +0200 Subject: [PATCH] Set indent size for all yaml files to 2 (#737) --- .editorconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index bc016f7a5..ed9f444d9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -12,7 +12,9 @@ trim_trailing_whitespace = true [*.md] trim_trailing_whitespace = false -[docker-compose.*.yaml] +[*.yaml] +indent_size = 2 +[*.yml] indent_size = 2 [Makefile]