-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
166 lines (159 loc) · 10.6 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
root = true
[*.{appxmanifest,axml,build,config,csproj,dbml,discomap,dtd,jsproj,lsproj,njsproj,nuspec,proj,props,resw,resx,StyleCop,targets,tasks,vbproj,xml,xsd}]
indent_style = tab
indent_size = tab
tab_width = 4
[*.{asax,ascx,aspx,axaml,cs,cshtml,css,htm,html,js,jsx,master,paml,razor,skin,ts,tsx,vb,xaml,xamlx,xoml}]
indent_style = space
indent_size = 4
tab_width = 4
[*.{json,resjson}]
indent_style = space
indent_size = 2
tab_width = 2
[*]
# Microsoft .NET properties
csharp_new_line_before_members_in_object_initializers = false
csharp_preferred_modifier_order = public, private, protected, internal, file, new, static, abstract, virtual, sealed, readonly, override, extern, unsafe, volatile, async, required:suggestion
csharp_preserve_single_line_blocks = false
csharp_style_prefer_utf8_string_literals = true:suggestion
csharp_style_var_elsewhere = false:suggestion
csharp_style_var_for_built_in_types = false:suggestion
csharp_style_var_when_type_is_apparent = false:suggestion
dotnet_naming_rule.private_constants_rule.import_to_resharper = as_predefined
dotnet_naming_rule.private_constants_rule.severity = warning
dotnet_naming_rule.private_constants_rule.style = upper_camel_case_style
dotnet_naming_rule.private_constants_rule.symbols = private_constants_symbols
dotnet_naming_rule.private_static_readonly_rule.import_to_resharper = as_predefined
dotnet_naming_rule.private_static_readonly_rule.severity = warning
dotnet_naming_rule.private_static_readonly_rule.style = lower_camel_case_style
dotnet_naming_rule.private_static_readonly_rule.symbols = private_static_readonly_symbols
dotnet_naming_rule.test_class_upper_camel_case_underscore_tolerant_rule.import_to_resharper = True
dotnet_naming_rule.test_class_upper_camel_case_underscore_tolerant_rule.resharper_description = Test_Class_UpperCamelCase_Underscore_Tolerant
dotnet_naming_rule.test_class_upper_camel_case_underscore_tolerant_rule.resharper_guid = b9786040-880a-4d82-b7c7-e353433ce257
dotnet_naming_rule.test_class_upper_camel_case_underscore_tolerant_rule.severity = warning
dotnet_naming_rule.test_class_upper_camel_case_underscore_tolerant_rule.style = upper_camel_case_underscore_tolerant_style
dotnet_naming_rule.test_class_upper_camel_case_underscore_tolerant_rule.symbols = test_class_upper_camel_case_underscore_tolerant_symbols
dotnet_naming_rule.test_upper_camel_case_underscore_tolerant_override_rule.import_to_resharper = False
dotnet_naming_rule.test_upper_camel_case_underscore_tolerant_override_rule.severity = warning
dotnet_naming_rule.test_upper_camel_case_underscore_tolerant_override_rule.style = upper_camel_case_underscore_tolerant_style
dotnet_naming_rule.test_upper_camel_case_underscore_tolerant_override_rule.symbols = test_upper_camel_case_underscore_tolerant_override_symbols
dotnet_naming_rule.test_upper_camel_case_underscore_tolerant_rule.import_to_resharper = True
dotnet_naming_rule.test_upper_camel_case_underscore_tolerant_rule.resharper_description = Test_UpperCamelCase_Underscore_Tolerant
dotnet_naming_rule.test_upper_camel_case_underscore_tolerant_rule.resharper_guid = 0d07e4e6-58f4-4282-b072-f5598eb0d85a
dotnet_naming_rule.test_upper_camel_case_underscore_tolerant_rule.severity = warning
dotnet_naming_rule.test_upper_camel_case_underscore_tolerant_rule.style = upper_camel_case_underscore_tolerant_style
dotnet_naming_rule.test_upper_camel_case_underscore_tolerant_rule.symbols = test_upper_camel_case_underscore_tolerant_symbols
dotnet_naming_rule.test_upper_camel_case_underscore_tolerant_rule_1.import_to_resharper = False
dotnet_naming_rule.test_upper_camel_case_underscore_tolerant_rule_1.severity = warning
dotnet_naming_rule.test_upper_camel_case_underscore_tolerant_rule_1.style = upper_camel_case_underscore_tolerant_style
dotnet_naming_rule.test_upper_camel_case_underscore_tolerant_rule_1.symbols = test_upper_camel_case_underscore_tolerant_symbols_1
dotnet_naming_style.lower_camel_case_style.capitalization = camel_case
dotnet_naming_style.lower_camel_case_style.required_prefix = _
dotnet_naming_style.upper_camel_case_style.capitalization = pascal_case
dotnet_naming_style.upper_camel_case_underscore_tolerant_style.capitalization = pascal_case
dotnet_naming_style.upper_camel_case_underscore_tolerant_style.word_separator = _
dotnet_naming_symbols.private_constants_symbols.applicable_accessibilities = private
dotnet_naming_symbols.private_constants_symbols.applicable_kinds = field
dotnet_naming_symbols.private_constants_symbols.required_modifiers = const
dotnet_naming_symbols.private_static_readonly_symbols.applicable_accessibilities = private
dotnet_naming_symbols.private_static_readonly_symbols.applicable_kinds = field
dotnet_naming_symbols.private_static_readonly_symbols.required_modifiers = static, readonly
dotnet_naming_symbols.test_class_upper_camel_case_underscore_tolerant_symbols.applicable_accessibilities = local, public, internal
dotnet_naming_symbols.test_class_upper_camel_case_underscore_tolerant_symbols.applicable_kinds =
dotnet_naming_symbols.test_class_upper_camel_case_underscore_tolerant_symbols.required_modifiers = static
dotnet_naming_symbols.test_class_upper_camel_case_underscore_tolerant_symbols.resharper_applicable_kinds = test_type
dotnet_naming_symbols.test_class_upper_camel_case_underscore_tolerant_symbols.resharper_required_modifiers = static
dotnet_naming_symbols.test_upper_camel_case_underscore_tolerant_override_symbols.applicable_accessibilities = local, public
dotnet_naming_symbols.test_upper_camel_case_underscore_tolerant_override_symbols.applicable_kinds =
dotnet_naming_symbols.test_upper_camel_case_underscore_tolerant_override_symbols.required_modifiers = static
dotnet_naming_symbols.test_upper_camel_case_underscore_tolerant_symbols.applicable_accessibilities = local, public
dotnet_naming_symbols.test_upper_camel_case_underscore_tolerant_symbols.applicable_kinds =
dotnet_naming_symbols.test_upper_camel_case_underscore_tolerant_symbols.resharper_applicable_kinds = test_type, test_member
dotnet_naming_symbols.test_upper_camel_case_underscore_tolerant_symbols.resharper_required_modifiers = instance
dotnet_naming_symbols.test_upper_camel_case_underscore_tolerant_symbols_1.applicable_accessibilities = local, public
dotnet_naming_symbols.test_upper_camel_case_underscore_tolerant_symbols_1.applicable_kinds =
dotnet_separate_import_directive_groups = true
dotnet_style_parentheses_in_arithmetic_binary_operators = never_if_unnecessary:none
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:none
dotnet_style_parentheses_in_relational_binary_operators = never_if_unnecessary:none
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
dotnet_style_predefined_type_for_member_access = true:suggestion
dotnet_style_qualification_for_event = false:suggestion
dotnet_style_qualification_for_field = false:suggestion
dotnet_style_qualification_for_method = false:suggestion
dotnet_style_qualification_for_property = false:suggestion
dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion
# ReSharper properties
resharper_align_linq_query = true
resharper_align_multiline_array_and_object_initializer = true
resharper_align_multiline_calls_chain = true
resharper_align_multiline_list_pattern = true
resharper_apply_auto_detected_rules = false
resharper_braces_for_dowhile = required_for_multiline
resharper_braces_for_fixed = required_for_multiline
resharper_braces_for_for = required_for_multiline
resharper_braces_for_foreach = required_for_multiline
resharper_braces_for_lock = required_for_multiline
resharper_braces_for_using = required_for_multiline
resharper_braces_for_while = required_for_multiline
resharper_csharp_keep_blank_lines_in_code = 1
resharper_csharp_keep_blank_lines_in_declarations = 1
resharper_csharp_wrap_after_declaration_lpar = true
resharper_csharp_wrap_lines = false
resharper_default_exception_variable_name =
resharper_event_handler_pattern_long = $object$_On$event$
resharper_indent_anonymous_method_block = true
resharper_indent_switch_labels = true
resharper_js_align_multiple_declaration = true
resharper_js_keep_blank_lines_in_code = 1
resharper_js_max_line_length = 180
resharper_js_quote_style = singlequoted
resharper_js_wrap_before_binary_opsign = true
resharper_js_wrap_for_stmt_header_style = wrap_if_long
resharper_keep_blank_lines_between_declarations = 1
resharper_keep_existing_embedded_arrangement = false
resharper_new_line_before_catch = true
resharper_new_line_before_else = true
resharper_new_line_before_finally = true
resharper_object_creation_when_type_not_evident = target_typed
resharper_place_accessorholder_attribute_on_same_line = false
resharper_place_constructor_initializer_on_same_line = false
resharper_place_field_attribute_on_same_line = false
resharper_place_simple_embedded_statement_on_same_line = false
resharper_simple_embedded_statement_style = line_break
resharper_space_before_method_parentheses_anonymous = true
resharper_wrap_arguments_style = wrap_if_long
resharper_wrap_before_extends_colon = true
resharper_wrap_before_first_type_parameter_constraint = true
resharper_wrap_chained_binary_expressions = wrap_if_long
resharper_wrap_object_and_collection_initializer_style = chop_always
resharper_wrap_parameters_style = wrap_if_long
resharper_xmldoc_indent_child_elements = ZeroIndent
resharper_xmldoc_indent_text = ZeroIndent
resharper_xmldoc_wrap_lines = false
resharper_xml_blank_line_after_pi = false
resharper_xml_linebreaks_inside_tags_for_elements_longer_than = 280
resharper_xml_max_line_length = 280
# ReSharper inspection severities
resharper_arrange_object_creation_when_type_evident_highlighting = none
resharper_arrange_object_creation_when_type_not_evident_highlighting = none
resharper_arrange_redundant_parentheses_highlighting = hint
resharper_arrange_this_qualifier_highlighting = hint
resharper_arrange_type_member_modifiers_highlighting = hint
resharper_arrange_type_modifiers_highlighting = hint
resharper_auto_property_can_be_made_get_only_local_highlighting = none
resharper_built_in_type_reference_style_for_member_access_highlighting = hint
resharper_built_in_type_reference_style_highlighting = hint
resharper_convert_to_local_function_highlighting = hint
resharper_convert_to_primary_constructor_highlighting = none
resharper_convert_to_using_declaration_highlighting = none
resharper_join_null_check_with_usage_highlighting = hint
resharper_possible_multiple_enumeration_highlighting = suggestion
resharper_redundant_base_qualifier_highlighting = warning
resharper_return_type_can_be_enumerable_local_highlighting = none
resharper_string_literal_wrong_quotes_highlighting = warning
resharper_suggest_var_or_type_built_in_types_highlighting = hint
resharper_suggest_var_or_type_elsewhere_highlighting = hint
resharper_suggest_var_or_type_simple_types_highlighting = hint
resharper_unused_member_global_highlighting = none