2
0
Fork 0

Use space indentation for all YAML files in `.editorconfig`

YAML only accepts spaces for indentation, not tabs.

(cherry picked from commit 076b17ff6c)
3.3
Hugo Locurcio 2021-02-20 02:52:30 +07:00 committed by Rémi Verschelde
parent af5fe70623
commit 2b3412a3be
1 changed files with 2 additions and 1 deletions

@ -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