.editorconfig 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. # editorconfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. # Default settings
  5. [*]
  6. insert_final_newline = true
  7. indent_style = space
  8. indent_size = 2
  9. # C# files
  10. [*.cs]
  11. indent_size = 4
  12. # New line preferences
  13. csharp_new_line_before_open_brace = all
  14. csharp_new_line_before_else = true
  15. csharp_new_line_before_catch = true
  16. csharp_new_line_before_finally = true
  17. csharp_new_line_before_members_in_object_initializers = true
  18. csharp_new_line_before_members_in_anonymous_types = true
  19. csharp_new_line_between_query_expression_clauses = true
  20. # Indentation preferences
  21. csharp_indent_block_contents = true
  22. csharp_indent_braces = false
  23. csharp_indent_case_contents = true
  24. csharp_indent_case_contents_when_block = true
  25. csharp_indent_switch_labels = true
  26. csharp_indent_labels = one_less_than_current
  27. # Modifier preferences
  28. csharp_preferred_modifier_order = public, private, protected, internal, static, extern, new, virtual, abstract, sealed, override, readonly, unsafe, volatile, async:suggestion
  29. # avoid this. unless absolutely necessary
  30. dotnet_style_qualification_for_field = false:suggestion
  31. dotnet_style_qualification_for_property = false:suggestion
  32. dotnet_style_qualification_for_method = false:suggestion
  33. dotnet_style_qualification_for_event = false:suggestion
  34. # Types: use keywords instead of BCL types, and permit var only when the type is clear
  35. csharp_style_var_for_built_in_types = true:none
  36. csharp_style_var_when_type_is_apparent = true:none
  37. csharp_style_var_elsewhere = true:none
  38. dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
  39. dotnet_style_predefined_type_for_member_access = true:suggestion
  40. # name all constant fields using PascalCase
  41. dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion
  42. dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields
  43. dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style
  44. dotnet_naming_symbols.constant_fields.applicable_kinds = field
  45. dotnet_naming_symbols.constant_fields.required_modifiers = const
  46. dotnet_naming_style.pascal_case_style.capitalization = pascal_case
  47. # static fields should have s_ prefix
  48. dotnet_naming_rule.static_fields_should_have_prefix.severity = suggestion
  49. dotnet_naming_rule.static_fields_should_have_prefix.symbols = static_fields
  50. dotnet_naming_rule.static_fields_should_have_prefix.style = static_prefix_style
  51. dotnet_naming_symbols.static_fields.applicable_kinds = field
  52. dotnet_naming_symbols.static_fields.required_modifiers = static
  53. dotnet_naming_symbols.static_fields.applicable_accessibilities = private, private_protected
  54. dotnet_naming_style.static_prefix_style.required_prefix = s_
  55. dotnet_naming_style.static_prefix_style.capitalization = camel_case
  56. # public static fields should be pascal cased
  57. dotnet_naming_rule.static_fields.severity = suggestion
  58. dotnet_naming_rule.static_fields.symbols = public_static_fields
  59. dotnet_naming_rule.static_fields.style = public_static_prefix_style
  60. dotnet_naming_symbols.public_static_fields.applicable_kinds = field
  61. dotnet_naming_symbols.public_static_fields.required_modifiers = static
  62. dotnet_naming_symbols.public_static_fields.applicable_accessibilities = public, internal
  63. dotnet_naming_style.public_static_prefix_style.capitalization = pascal_case
  64. # internal and private fields should be _camelCase
  65. dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion
  66. dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
  67. dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style
  68. dotnet_naming_symbols.private_internal_fields.applicable_kinds = field
  69. dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal
  70. dotnet_naming_style.camel_case_underscore_style.required_prefix = _
  71. dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
  72. # Code style defaults
  73. csharp_using_directive_placement = outside_namespace:suggestion
  74. dotnet_sort_system_directives_first = true
  75. csharp_prefer_braces = true:silent
  76. csharp_preserve_single_line_blocks = true:none
  77. csharp_preserve_single_line_statements = false:none
  78. csharp_prefer_static_local_function = true:suggestion
  79. csharp_prefer_simple_using_statement = false:none
  80. csharp_style_prefer_switch_expression = true:suggestion
  81. # Code quality
  82. dotnet_style_readonly_field = true:suggestion
  83. dotnet_code_quality_unused_parameters = non_public:suggestion
  84. # Expression-level preferences
  85. dotnet_style_object_initializer = true:suggestion
  86. dotnet_style_collection_initializer = true:suggestion
  87. dotnet_style_explicit_tuple_names = true:suggestion
  88. dotnet_style_coalesce_expression = true:suggestion
  89. dotnet_style_null_propagation = true:suggestion
  90. dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
  91. dotnet_style_prefer_inferred_tuple_names = true:suggestion
  92. dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
  93. dotnet_style_prefer_auto_properties = true:suggestion
  94. dotnet_style_prefer_conditional_expression_over_assignment = true:silent
  95. dotnet_style_prefer_conditional_expression_over_return = true:silent
  96. csharp_prefer_simple_default_expression = true:suggestion
  97. # Expression-bodied members
  98. csharp_style_expression_bodied_methods = true:silent
  99. csharp_style_expression_bodied_constructors = true:silent
  100. csharp_style_expression_bodied_operators = true:silent
  101. csharp_style_expression_bodied_properties = true:silent
  102. csharp_style_expression_bodied_indexers = true:silent
  103. csharp_style_expression_bodied_accessors = true:silent
  104. csharp_style_expression_bodied_lambdas = true:silent
  105. csharp_style_expression_bodied_local_functions = true:silent
  106. # Pattern matching
  107. csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
  108. csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
  109. csharp_style_inlined_variable_declaration = true:suggestion
  110. # Null checking preferences
  111. csharp_style_throw_expression = true:suggestion
  112. csharp_style_conditional_delegate_call = true:suggestion
  113. # Other features
  114. csharp_style_prefer_index_operator = false:none
  115. csharp_style_prefer_range_operator = false:none
  116. csharp_style_pattern_local_over_anonymous_function = false:none
  117. # Space preferences
  118. csharp_space_after_cast = false
  119. csharp_space_after_colon_in_inheritance_clause = true
  120. csharp_space_after_comma = true
  121. csharp_space_after_dot = false
  122. csharp_space_after_keywords_in_control_flow_statements = true
  123. csharp_space_after_semicolon_in_for_statement = true
  124. csharp_space_around_binary_operators = before_and_after
  125. csharp_space_around_declaration_statements = do_not_ignore
  126. csharp_space_before_colon_in_inheritance_clause = true
  127. csharp_space_before_comma = false
  128. csharp_space_before_dot = false
  129. csharp_space_before_open_square_brackets = false
  130. csharp_space_before_semicolon_in_for_statement = false
  131. csharp_space_between_empty_square_brackets = false
  132. csharp_space_between_method_call_empty_parameter_list_parentheses = false
  133. csharp_space_between_method_call_name_and_opening_parenthesis = false
  134. csharp_space_between_method_call_parameter_list_parentheses = false
  135. csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
  136. csharp_space_between_method_declaration_name_and_open_parenthesis = false
  137. csharp_space_between_method_declaration_parameter_list_parentheses = false
  138. csharp_space_between_parentheses = false
  139. csharp_space_between_square_brackets = false
  140. dotnet_diagnostic.CA1822.severity = silent
  141. dotnet_diagnostic.CA1816.severity = none
  142. dotnet_diagnostic.CA1826.severity = none
  143. dotnet_diagnostic.CA2007.severity = error
  144. dotnet_diagnostic.IDE0042.severity = none
  145. dotnet_diagnostic.IDE0058.severity = none
  146. dotnet_diagnostic.VSTHRD100.severity = none
  147. dotnet_diagnostic.VSTHRD200.severity = none
  148. # XAML
  149. [*.xaml]
  150. indent_style = space
  151. indent_size = 4
  152. charset = utf-8-bom
  153. insert_final_newline = true
  154. trim_trailing_whitespace = true
  155. end_of_line = crlf