зеркало из https://github.com/github/VisualStudio.git
74 строки
2.7 KiB
INI
74 строки
2.7 KiB
INI
# top-most EditorConfig file
|
|
root = true
|
|
|
|
[*.{cs,vb}]
|
|
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
# Organize usings
|
|
dotnet_sort_system_directives_first = true
|
|
|
|
# this. preferences
|
|
dotnet_style_qualification_for_field = false:silent
|
|
dotnet_style_qualification_for_property = false:silent
|
|
dotnet_style_qualification_for_method = false:silent
|
|
dotnet_style_qualification_for_event = false:silent
|
|
|
|
# Language keywords vs BCL types preferences
|
|
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
|
|
dotnet_style_predefined_type_for_member_access = true:suggestion
|
|
|
|
# Parentheses preferences
|
|
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent
|
|
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent
|
|
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent
|
|
dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent
|
|
|
|
# Modifier preferences
|
|
dotnet_style_require_accessibility_modifiers = never:silent
|
|
dotnet_style_readonly_field = true:suggestion
|
|
|
|
# Expression-level preferences
|
|
dotnet_style_object_initializer = true:suggestion
|
|
dotnet_style_collection_initializer = true:suggestion
|
|
dotnet_style_explicit_tuple_names = true:suggestion
|
|
dotnet_style_null_propagation = true:suggestion
|
|
dotnet_style_coalesce_expression = true:suggestion
|
|
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
|
|
dotnet_style_prefer_auto_properties = true:silent
|
|
dotnet_style_prefer_conditional_expression_over_assignment = true:silent
|
|
dotnet_style_prefer_conditional_expression_over_return = true:silent
|
|
|
|
[*.cs]
|
|
|
|
# var preferences
|
|
csharp_style_var_for_built_in_types = true:suggestion
|
|
csharp_style_var_when_type_is_apparent = true:suggestion
|
|
csharp_style_var_elsewhere = true:suggestion
|
|
|
|
# Expression-bodied members
|
|
csharp_style_expression_bodied_methods = false:none
|
|
csharp_style_expression_bodied_constructors = false:none
|
|
csharp_style_expression_bodied_operators = false:none
|
|
csharp_style_expression_bodied_properties = false:none
|
|
csharp_style_expression_bodied_indexers = false:none
|
|
csharp_style_expression_bodied_accessors = false:none
|
|
|
|
# Pattern matching preferences
|
|
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
|
|
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
|
|
|
|
# Null-checking preferences
|
|
csharp_style_throw_expression = true:suggestion
|
|
csharp_style_conditional_delegate_call = true:suggestion
|
|
|
|
# Expression-level preferences
|
|
csharp_prefer_braces = true:suggestion
|
|
csharp_style_deconstructed_variable_declaration = true:suggestion
|
|
csharp_prefer_simple_default_expression = true:suggestion
|
|
csharp_style_inlined_variable_declaration = true:suggestion
|
|
|
|
# Spacing options
|
|
csharp_space_after_keywords_in_control_flow_statements = true
|