forked from lvermeulen/Flurl.Http.Xml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
203 lines (196 loc) · 10.4 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
[*.proto]
indent_style=tab
indent_size=tab
tab_width=4
[*.{asax,ascx,aspx,cs,cshtml,css,htm,html,js,jsx,master,razor,skin,ts,tsx,vb,xaml,xamlx,xoml}]
indent_style=space
indent_size=4
tab_width=4
[*.{appxmanifest,build,config,csproj,dbml,discomap,dtd,json,jsproj,lsproj,njsproj,nuspec,proj,props,resjson,resw,resx,StyleCop,targets,tasks,vbproj,xml,xsd}]
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, new, abstract, virtual, sealed, override, static, readonly, extern, unsafe, volatile, async:suggestion
csharp_space_after_cast=false
csharp_style_var_elsewhere=true:hint
csharp_style_var_for_built_in_types=false:suggestion
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:hint
dotnet_style_qualification_for_field=false:hint
dotnet_style_qualification_for_method=false:hint
dotnet_style_qualification_for_property=false:hint
dotnet_style_require_accessibility_modifiers=for_non_interface_members:hint
# ReSharper properties
resharper_align_multiline_binary_expressions_chain=false
resharper_apply_on_completion=true
resharper_braces_for_for=required
resharper_braces_for_foreach=required
resharper_braces_for_ifelse=required
resharper_braces_for_while=required
resharper_braces_redundant=false
resharper_csharp_wrap_lines=false
resharper_prefer_explicit_discard_declaration=true
resharper_space_within_single_line_array_initializer_braces=true
# ReSharper inspection severities
resharper_access_to_modified_closure_highlighting=hint
resharper_assigned_value_is_never_used_highlighting=none
resharper_assignment_in_condition_expression_highlighting=none
resharper_assign_to_constant_highlighting=none
resharper_assign_to_implicit_global_in_function_scope_highlighting=none
resharper_bad_namespace_braces_indent_highlighting=warning
resharper_block_scope_redeclaration_highlighting=none
resharper_caller_callee_using_error_highlighting=none
resharper_caller_callee_using_highlighting=none
resharper_class_never_instantiated_global_highlighting=none
resharper_closure_on_modified_variable_highlighting=none
resharper_coerced_equals_using_highlighting=none
resharper_collection_never_queried_global_highlighting=none
resharper_collection_never_updated_global_highlighting=hint
resharper_comma_not_valid_here_highlighting=none
resharper_comment_typo_highlighting=none
resharper_conditional_ternary_equal_branch_highlighting=none
resharper_condition_is_always_const_highlighting=none
resharper_constructor_call_not_used_highlighting=none
resharper_css_browser_compatibility_highlighting=none
resharper_css_caniuse_feature_requires_prefix_highlighting=none
resharper_css_caniuse_unsupported_feature_highlighting=none
resharper_css_not_resolved_highlighting=none
resharper_css_obsolete_highlighting=none
resharper_css_property_does_not_override_vendor_property_highlighting=none
resharper_declaration_hides_highlighting=none
resharper_declaration_is_empty_highlighting=none
resharper_deleting_non_qualified_reference_highlighting=none
resharper_double_colons_expected_highlighting=none
resharper_double_colons_preferred_highlighting=none
resharper_duplicating_local_declaration_highlighting=none
resharper_duplicating_parameter_declaration_error_highlighting=none
resharper_duplicating_property_declaration_error_highlighting=none
resharper_duplicating_property_declaration_highlighting=none
resharper_duplicating_switch_label_highlighting=none
resharper_elided_trailing_element_highlighting=none
resharper_empty_object_property_declaration_highlighting=none
resharper_enforce_do_while_statement_braces_highlighting=warning
resharper_enforce_fixed_statement_braces_highlighting=warning
resharper_enforce_foreach_statement_braces_highlighting=warning
resharper_enforce_for_statement_braces_highlighting=warning
resharper_enforce_if_statement_braces_highlighting=warning
resharper_enforce_lock_statement_braces_highlighting=warning
resharper_enforce_using_statement_braces_highlighting=warning
resharper_enforce_while_statement_braces_highlighting=warning
resharper_error_in_xml_doc_reference_highlighting=none
resharper_es6_feature_highlighting=none
resharper_es7_feature_highlighting=none
resharper_eval_arguments_name_error_highlighting=none
resharper_experimental_feature_highlighting=none
resharper_expression_is_always_const_highlighting=none
resharper_function_parameter_named_arguments_highlighting=none
resharper_function_used_out_of_scope_highlighting=none
resharper_heuristically_unreachable_code_highlighting=none
resharper_hex_color_value_with_alpha_highlighting=none
resharper_html_attribute_not_resolved_highlighting=none
resharper_identifier_typo_highlighting=none
resharper_import_keyword_not_with_invocation_highlighting=none
resharper_inconsistent_function_returns_highlighting=none
resharper_inconsistent_naming_highlighting=none
resharper_incorrect_operand_in_type_of_comparison_highlighting=none
resharper_incorrect_triple_slash_location_highlighting=none
resharper_invalid_json_syntax_highlighting=none
resharper_invalid_value_highlighting=none
resharper_invocation_of_non_function_highlighting=none
resharper_invoked_expression_maybe_non_function_highlighting=none
resharper_join_declaration_and_initializer_js_highlighting=none
resharper_json_validation_failed_highlighting=none
resharper_js_path_not_found_highlighting=none
resharper_js_unreachable_code_highlighting=none
resharper_jump_must_be_in_loop_highlighting=none
resharper_label_or_semicolon_expected_highlighting=none
resharper_lexical_declaration_needs_block_highlighting=none
resharper_local_function_redefined_later_highlighting=none
resharper_l_value_is_expected_highlighting=none
resharper_member_can_be_made_static_local_highlighting=none
resharper_member_can_be_private_global_highlighting=none
resharper_member_can_be_protected_global_highlighting=none
resharper_missing_has_own_property_in_foreach_highlighting=none
resharper_misuse_of_owner_function_this_highlighting=none
resharper_multiple_declarations_in_foreach_highlighting=none
resharper_native_type_prototype_extending_highlighting=none
resharper_native_type_prototype_overwriting_highlighting=none
resharper_non_assigned_constant_highlighting=none
resharper_non_readonly_member_in_get_hash_code_highlighting=hint
resharper_not_all_paths_return_value_highlighting=none
resharper_not_resolved_highlighting=none
resharper_object_destructuring_without_parentheses_highlighting=none
resharper_object_literals_are_not_comma_free_highlighting=none
resharper_octal_literals_not_allowed_error_highlighting=none
resharper_parameter_only_used_for_precondition_check_local_highlighting=none
resharper_parameter_value_is_not_used_highlighting=none
resharper_path_not_resolved_highlighting=none
resharper_possibly_incorrectly_broken_statement_highlighting=none
resharper_possibly_unassigned_property_highlighting=none
resharper_property_getter_cannot_have_parameters_highlighting=none
resharper_property_setter_must_have_single_parameter_highlighting=none
resharper_qualified_expression_is_null_highlighting=none
resharper_qualified_expression_maybe_null_highlighting=none
resharper_redundant_base_qualifier_highlighting=warning
resharper_redundant_block_highlighting=none
resharper_redundant_css_hack_highlighting=none
resharper_redundant_declaration_semicolon_highlighting=warning
resharper_redundant_else_block_highlighting=none
resharper_redundant_empty_finally_block_highlighting=none
resharper_redundant_highlighting=none
resharper_redundant_intermediate_variable_highlighting=none
resharper_redundant_local_class_name_highlighting=none
resharper_redundant_local_function_name_highlighting=none
resharper_redundant_type_specification_in_default_expression_highlighting=hint
resharper_redundant_units_highlighting=none
resharper_replace_indicing_with_array_destructuring_highlighting=none
resharper_replace_indicing_with_short_hand_properties_after_destructuring_highlighting=none
resharper_replace_undefined_checking_series_with_object_destructuring_highlighting=none
resharper_replace_with_destructuring_swap_highlighting=none
resharper_requires_fallback_color_highlighting=none
resharper_return_from_global_scopet_with_value_highlighting=none
resharper_same_variable_assignment_highlighting=none
resharper_similar_expressions_comparison_highlighting=none
resharper_statement_termination_highlighting=none
resharper_string_concatenation_to_template_string_highlighting=none
resharper_string_literal_typo_highlighting=none
resharper_string_literal_wrong_quotes_highlighting=none
resharper_super_call_prohibits_this_highlighting=none
resharper_suspicious_lambda_block_highlighting=none
resharper_syntax_is_not_allowed_highlighting=none
resharper_this_in_global_context_highlighting=none
resharper_throw_must_be_followed_by_expression_highlighting=none
resharper_undeclared_global_variable_using_highlighting=none
resharper_unexpected_value_highlighting=none
resharper_unknown_css_class_highlighting=none
resharper_unknown_css_variable_highlighting=none
resharper_unknown_css_vendor_extension_highlighting=none
resharper_unsafe_comma_in_object_properties_list_highlighting=none
resharper_unused_auto_property_accessor_global_highlighting=none
resharper_unused_inherited_parameter_highlighting=none
resharper_unused_locals_highlighting=none
resharper_unused_member_global_highlighting=none
resharper_unused_member_in_super_global_highlighting=none
resharper_unused_method_return_value_global_highlighting=none
resharper_unused_parameter_highlighting=none
resharper_unused_property_highlighting=none
resharper_usage_of_definitely_unassigned_value_highlighting=none
resharper_usage_of_possibly_unassigned_value_highlighting=none
resharper_use_of_implicit_global_in_function_scope_highlighting=none
resharper_using_of_reserved_word_error_highlighting=none
resharper_using_of_reserved_word_highlighting=none
resharper_value_should_have_units_highlighting=none
resharper_variable_can_be_made_const_highlighting=none
resharper_variable_can_be_made_let_highlighting=none
resharper_variable_can_be_moved_to_inner_block_highlighting=none
resharper_variable_used_before_declared_highlighting=none
resharper_variable_used_in_inner_scope_before_declared_highlighting=none
resharper_variable_used_out_of_scope_highlighting=none
resharper_with_statement_using_error_highlighting=none
resharper_wrong_expression_statement_highlighting=none
resharper_xml_doc_comment_syntax_problem_highlighting=none