소스 검색

Add new lines and space-indentation only to *.cs files (#614)

David Karnok 7 년 전
부모
커밋
9a3def6a96
1개의 변경된 파일3개의 추가작업 그리고 8개의 파일을 삭제
  1. 3 8
      .editorconfig

+ 3 - 8
.editorconfig

@@ -3,19 +3,14 @@
 # top-most EditorConfig file
 root = true
 
-# Default settings:
-# A newline ending every file
-# Use 4 spaces as indentation
-[*]
-insert_final_newline = true
-indent_style = space
-indent_size = 4
-
 [project.json]
 indent_size = 2
 
 # C# files
 [*.cs]
+insert_final_newline = true
+indent_style = space
+indent_size = 4
 # New line preferences
 csharp_new_line_before_open_brace = all
 csharp_new_line_before_else = true