-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
35 lines (31 loc) · 1.31 KB
/
.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
33
34
35
root = true
[*]
charset = utf-8
max_line_length = 150
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
[{*.cs, *.cshtml}]
# Microsoft .NET properties
csharp_new_line_before_members_in_object_initializers=false
csharp_preferred_modifier_order=public, private, protected, internal, new, abstract, virtual, sealed, override, static, readonly, extern, unsafe, volatile, async:suggestion
csharp_style_var_elsewhere=true:hint
csharp_style_var_for_built_in_types=true:hint
csharp_style_var_when_type_is_apparent=true:hint
dotnet_style_predefined_type_for_locals_parameters_members=true:hint
dotnet_style_predefined_type_for_member_access=true:hint
dotnet_style_qualification_for_event=false:warning
dotnet_style_qualification_for_field=false:warning
dotnet_style_qualification_for_method=false:warning
dotnet_style_qualification_for_property=false:warning
dotnet_style_require_accessibility_modifiers=for_non_interface_members:hint
# ReSharper properties
resharper_autodetect_indent_settings=true
resharper_space_after_ampersand_op=true
resharper_space_after_asterik_op=true
resharper_space_after_unary_minus_op=true
resharper_space_after_unary_plus_op=true
resharper_space_around_arrow_op=true
resharper_space_within_single_line_array_initializer_braces=true
resharper_use_indent_from_vs=false