소스 검색

Add .editorconfig

Lucas Trzesniewski 7 년 전
부모
커밋
636928c134
1개의 변경된 파일32개의 추가작업 그리고 0개의 파일을 삭제
  1. 32 0
      .editorconfig

+ 32 - 0
.editorconfig

@@ -0,0 +1,32 @@
+
+root = true
+
+[*]
+trim_trailing_whitespace = true
+insert_final_newline = true
+end_of_line = crlf
+
+[*.{cs,csx,xaml,cake}]
+indent_size = 4
+indent_style = space
+
+[*.{config,nuspec,resx}]
+indent_size = 2
+indent_style = space
+
+[*.{csproj,vcxproj,props,targets}]
+indent_size = 2
+indent_style = space
+insert_final_newline = false
+
+[*.sln]
+indent_style = tab
+
+[*.md]
+trim_trailing_whitespace = false
+
+[*.sh]
+end_of_line = lf
+
+[*.g4]
+indent_style = tab