From e7126349c4e7dc1ea97a9105e028ea64d5ba947d Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Wed, 1 Mar 2023 11:22:33 +0300 Subject: [PATCH] Add `yaml` extension to `.editorconfig` (#14809) --- .editorconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 560067027c52..1e8be1006aa9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,6 +1,6 @@ root = true -[*.{py,pyi,c,cpp,h,rst,md,yml,json,test}] +[*.{py,pyi,c,cpp,h,rst,md,yml,yaml,json,test}] trim_trailing_whitespace = true insert_final_newline = true indent_style = space @@ -8,5 +8,5 @@ indent_style = space [*.{py,pyi,c,h,json,test}] indent_size = 4 -[*.yml] +[*.{yml,yaml}] indent_size = 2