-
Notifications
You must be signed in to change notification settings - Fork 45
/
.editorconfig
30 lines (26 loc) · 872 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
; Top-most http://editorconfig.org/ file
root = true
[*]
end_of_line = crlf
insert_final_newline = true
trim_trailing_whitespace = true
; 4-column indentation
[*.{cs,csproj,xaml,xml,sln,props,targets,resx,config}]
indent_style = space
indent_size = 4
dotnet_sort_system_directives_first = true
dotnet_style_require_accessibility_modifiers = for_non_interface_members:always
dotnet_style_coalesce_expression = false
dotnet_style_null_propagation = false
dotnet_style_prefer_auto_properties = false:silent
csharp_preserve_single_line_statements = true
csharp_preserve_single_line_blocks = true
csharp_new_line_before_open_brace = methods, properties, events, indexers, types
csharp_new_line_before_else = false
csharp_new_line_before_catch = false
csharp_new_line_before_finally = false
[*.{xeto,md,yml,lng}]
indent_style = space
indent_size = 2
[*.sh]
end_of_line = lf