-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
32 lines (29 loc) · 867 Bytes
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
root = true
[*]
charset = utf-8
dotnet_diagnostic.IDE0055.severity = error
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.cs]
charset = utf-8
csharp_new_line_before_catch = false
csharp_new_line_before_else = false
csharp_new_line_before_finally = false
csharp_new_line_before_members_in_anonymous_types = false
csharp_new_line_before_members_in_object_initializers = false
csharp_new_line_before_open_brace = none
csharp_new_line_between_query_expression_clauses = false
csharp_preserve_single_line_statements = false
csharp_preserve_single_line_blocks = false
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.cs,*.vb]
dotnet_separate_import_directive_groups = true
dotnet_sort_system_directives_first = true
indent_size = 4