File tree 1 file changed +10
-4
lines changed 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,18 @@ tab_width = 4
20
20
21
21
# StyleCop Diagnostic Rules =================
22
22
23
- # Ensure opening and closing braces are indented correctly
24
- csharp_indent_braces = true
25
- # Allow code blocks to remain on a single line if they fit
26
- csharp_preserve_single_line_blocks = true
27
23
# Always insert a newline before opening braces '{'
28
24
csharp_new_line_before_open_brace = methods, properties, control_blocks, types
25
+ # Display multiple statements and member declarations on a single line
26
+ csharp_preserve_single_line_statements = false
27
+ # Allow code blocks to remain on a single line if they fit
28
+ csharp_preserve_single_line_blocks = true
29
+ # Indent switch label
30
+ csharp_indent_switch_labels = true
31
+ # Indent the contents of the block.
32
+ csharp_indent_block_contents = true
33
+ # Ensure opening and closing braces are indented correctly
34
+ csharp_indent_braces = false
29
35
# Insert spaces after cast operators
30
36
csharp_space_after_cast = true
31
37
# Insert a space before colons ':' in inheritance clauses
You can’t perform that action at this time.
0 commit comments