소스 검색

Specify more indentation rules

* defaults to 4 spaces (js,html,conf)
Lucian I. Last 6 년 전
부모
커밋
4d1a7b5169
1개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제
  1. 5 4
      .editorconfig

+ 5 - 4
.editorconfig

@@ -4,11 +4,12 @@ root = true
 charset = utf-8
 end_of_line = lf
 insert_final_newline = true
+indent_style = space
+indent_size = 4
 
-[{package.json,.travis.yml}]
+[{package.json,.travis.yml,Dockerfile}]
 indent_style = space
 indent_size = 2
 
-[*.js]
-indent_style = space
-indent_size = 4
+[*.sh]
+indent_style = tab