From de7a4a7e866a5e7e2d4b3a8263891b220ccc3f43 Mon Sep 17 00:00:00 2001 From: Daniel Perez Alvarez Date: Sat, 21 Dec 2024 11:32:37 -0800 Subject: [PATCH] style: set editorconfig indentation for yaml files to 2 spaces This matches the indentation in .github/workflows/*.yaml files --- .editorconfig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 3b0653ac..94654e60 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,4 +6,7 @@ indent_size = 4 end_of_line = lf charset = utf-8 trim_trailing_whitespace = false -insert_final_newline = false \ No newline at end of file +insert_final_newline = false + +[*.{yaml,yml}] +indent_size = 2 \ No newline at end of file