浏览代码

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