2016-12-11 21:17:50 +01:00
|
|
|
root = true
|
|
|
|
|
2018-12-15 13:05:11 +01:00
|
|
|
# Default settings
|
|
|
|
[*]
|
2016-12-11 21:17:50 +01:00
|
|
|
charset = utf-8
|
2017-10-04 00:05:47 +02:00
|
|
|
indent_style = space
|
|
|
|
trim_trailing_whitespace = true
|
2018-10-23 23:25:01 +02:00
|
|
|
|
2018-12-15 13:05:11 +01:00
|
|
|
[*.{h,cpp}]
|
|
|
|
indent_size = 4
|
|
|
|
|
2018-10-23 23:25:01 +02:00
|
|
|
[CMakeLists.txt]
|
|
|
|
indent_size = 2
|
2018-12-15 13:05:11 +01:00
|
|
|
|
|
|
|
[*.cs]
|
|
|
|
indent_size = 4
|
|
|
|
|
|
|
|
# New line preferences
|
|
|
|
csharp_new_line_before_catch = true
|
|
|
|
csharp_new_line_before_else = true
|
|
|
|
csharp_new_line_before_open_brace = control_blocks, types, methods, object_collection, accessors, properties
|
|
|
|
|
|
|
|
# Indentation preferences
|
|
|
|
csharp_indent_case_contents = true
|
|
|
|
csharp_indent_switch_labels = true
|
|
|
|
|
|
|
|
# Space preferences
|
|
|
|
csharp_space_after_cast = false
|
|
|
|
csharp_space_after_colon_in_inheritance_clause = true
|
|
|
|
csharp_space_after_keywords_in_control_flow_statements = true
|
|
|
|
csharp_space_before_colon_in_inheritance_clause = true
|
|
|
|
csharp_space_between_method_call_empty_parameter_list_parentheses = false
|
|
|
|
csharp_space_between_method_call_name_and_opening_parenthesis = false
|
|
|
|
csharp_space_between_method_call_parameter_list_parentheses = false
|
|
|
|
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
|
|
|
|
csharp_space_between_method_declaration_parameter_list_parentheses = false
|
|
|
|
|
|
|
|
csharp_preserve_single_line_blocks = true
|
|
|
|
|
|
|
|
csharp_style_expression_bodied_constructors = false:suggestion
|
|
|
|
csharp_style_expression_bodied_methods = false:suggestion
|
|
|
|
csharp_style_expression_bodied_properties = true:suggestion
|
|
|
|
csharp_style_inlined_variable_declaration = false:suggestion
|
|
|
|
csharp_style_var_for_built_in_types = true:suggestion
|
|
|
|
csharp_style_var_when_type_is_apparent = true:suggestion
|
|
|
|
|
|
|
|
dotnet_sort_system_directives_first = true
|
|
|
|
|
|
|
|
dotnet_style_predefined_type_for_member_access = true:suggestion
|
|
|
|
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
|
|
|
|
dotnet_style_qualification_for_field = false:suggestion
|
|
|
|
dotnet_style_qualification_for_method = false:suggestion
|
|
|
|
dotnet_style_qualification_for_property = false:suggestion
|