Auto merge of #5031 - JohnTitor:editorconfig, r=phansch

Prefer 2 spaces as indent size over 4 on yaml

We use 2 spaces as an indent on YAML like `.travis.yml` now but `.editorconfig` tells my editor that indent size is 4, not 2. It makes my editor confused.

changelog: none
This commit is contained in:
bors 2020-01-09 21:24:34 +00:00
commit 43ac9416d9

View file

@ -14,3 +14,6 @@ indent_size = 4
[*.md]
trim_trailing_whitespace = false
[*.yml]
indent_size = 2