소스 검색

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

YAML only accepts spaces for indentation, not tabs.

(cherry picked from commit 076b17ff6c1b0cec8be8c329a93ec0b5acf4d285)
Hugo Locurcio 4 년 전
부모
커밋
2b3412a3be
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      .editorconfig

+ 2 - 1
.editorconfig

@@ -17,7 +17,8 @@ indent_size = 4
 indent_style = space
 indent_style = space
 indent_size = 4
 indent_size = 4
 
 
-[.travis.yml]
+# YAML requires indentation with spaces instead of tabs.
+[*.{yml,yaml}]
 indent_style = space
 indent_style = space
 indent_size = 2
 indent_size = 2