From 2b3412a3bee408366040c60b5fc3598b573a19b7 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Sat, 20 Feb 2021 02:52:30 +0100 Subject: [PATCH] Use space indentation for all YAML files in `.editorconfig` YAML only accepts spaces for indentation, not tabs. (cherry picked from commit 076b17ff6c1b0cec8be8c329a93ec0b5acf4d285) --- .editorconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 49517a5104..7743622e78 100644 --- a/.editorconfig +++ b/.editorconfig @@ -17,7 +17,8 @@ indent_size = 4 indent_style = space indent_size = 4 -[.travis.yml] +# YAML requires indentation with spaces instead of tabs. +[*.{yml,yaml}] indent_style = space indent_size = 2