2020-11-23 17:25:18 +03:00
# You can learn more about .editorconfig here: https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference
2018-02-08 20:23:15 +03:00
root = true
2020-08-03 09:26:39 +03:00
# For all files.
[*]
2020-07-23 00:28:26 +03:00
charset = utf-8
2022-06-24 11:50:35 +03:00
insert_final_newline = true
2020-07-23 00:28:26 +03:00
2020-08-03 09:26:39 +03:00
# Formatting - remove any whitespace characters preceding newline characters
trim_trailing_whitespace = true
2023-06-20 13:42:30 +03:00
[*.{cs,csproj,props}]
2020-07-23 09:00:15 +03:00
2020-07-23 00:28:26 +03:00
# use hard tabs for indentation
indent_style = tab
2020-11-12 17:07:54 +03:00
indent_size = 4
2020-07-23 00:28:26 +03:00
# Formatting - set preferred newline characters
end_of_line = lf
2021-06-14 22:39:10 +03:00
[*.{xaml,axaml}]
2019-04-22 15:33:23 +03:00
2020-07-23 09:00:15 +03:00
indent_style = space
indent_size = 2
2018-02-08 20:23:15 +03:00
2020-07-23 09:00:15 +03:00
[*.cs]
2019-04-22 15:33:23 +03:00
2023-04-02 19:57:11 +03:00
# Spell Checker rules
spelling_languages = en-us
spelling_checkable_types = strings,identifiers,comments
spelling_error_severity = information
spelling_exclusion_path = .\exclusion.dic
2020-07-23 00:28:26 +03:00
# require braces to be on a new line for all
2019-07-09 23:00:49 +03:00
csharp_new_line_before_open_brace = all
2019-04-22 15:33:23 +03:00
2020-06-20 11:27:17 +03:00
# Formatting - spacing options
# require NO space between a cast and the value
2019-04-22 15:33:23 +03:00
csharp_space_after_cast = false:error
2020-06-20 11:27:17 +03:00
# require a space before the colon for bases or interfaces in a type declaration
2019-04-22 15:33:23 +03:00
csharp_space_after_colon_in_inheritance_clause = true:error
2020-06-20 11:27:17 +03:00
# require a space after a keyword in a control flow statement such as a for loop
2019-04-22 15:33:23 +03:00
csharp_space_after_keywords_in_control_flow_statements = true:error
2020-06-20 11:27:17 +03:00
# require a space before the colon for bases or interfaces in a type declaration
2019-04-22 15:33:23 +03:00
csharp_space_before_colon_in_inheritance_clause = true:error
2020-06-20 11:27:17 +03:00
# remove space within empty argument list parentheses
2019-04-22 15:33:23 +03:00
csharp_space_between_method_call_empty_parameter_list_parentheses = false:error
2020-06-20 11:27:17 +03:00
# remove space between method call name and opening parenthesis
2019-04-22 15:33:23 +03:00
csharp_space_between_method_call_name_and_opening_parenthesis = false:error
2020-06-20 11:27:17 +03:00
# do not place space characters after the opening parenthesis and before the closing parenthesis of a method call
2019-04-22 15:33:23 +03:00
csharp_space_between_method_call_parameter_list_parentheses = false:error
2020-06-20 11:27:17 +03:00
# remove space within empty parameter list parentheses for a method declaration
2019-04-22 15:33:23 +03:00
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false:error
2020-06-20 11:27:17 +03:00
# place a space character after the opening parenthesis and before the closing parenthesis of a method declaration parameter list.
2019-04-22 15:33:23 +03:00
csharp_space_between_method_declaration_parameter_list_parentheses = false:error
2020-06-20 11:27:17 +03:00
# Formatting - wrapping options
2019-04-22 15:33:23 +03:00
2020-06-20 11:27:17 +03:00
# leave code block on single line
2019-04-22 15:33:23 +03:00
csharp_preserve_single_line_blocks = true:error
2020-06-20 11:27:17 +03:00
# leave statements and member declarations on the same line
2019-04-22 15:33:23 +03:00
csharp_preserve_single_line_statements = true:error
2020-06-20 11:27:17 +03:00
# Style - expression bodied member options
2019-04-22 15:33:23 +03:00
2020-06-20 11:27:17 +03:00
# prefer expression-bodied members for accessors
2019-04-22 15:33:23 +03:00
csharp_style_expression_bodied_accessors = true:suggestion
2020-06-20 11:27:17 +03:00
# prefer block bodies for constructors
2019-04-22 15:33:23 +03:00
csharp_style_expression_bodied_constructors = false:suggestion
2020-06-20 11:27:17 +03:00
# prefer expression-bodied members for operators
2019-04-22 15:33:23 +03:00
csharp_style_expression_bodied_operators = true:suggestion
2020-06-20 11:27:17 +03:00
# prefer expression-bodied members for properties
2019-04-22 15:33:23 +03:00
csharp_style_expression_bodied_properties = true:suggestion
2020-06-20 11:27:17 +03:00
# Style - expression level options
2019-04-22 15:33:23 +03:00
2020-06-20 11:27:17 +03:00
# prefer out variables to be declared inline in the argument list of a method call when possible
2019-04-22 15:33:23 +03:00
csharp_style_inlined_variable_declaration = true:error
csharp_style_deconstructed_variable_declaration = false:warning
2020-06-20 11:27:17 +03:00
# prefer the language keyword for member access expressions, instead of the type name, for types that have a keyword to represent them
2019-04-22 15:33:23 +03:00
dotnet_style_predefined_type_for_member_access = true:error
2018-02-08 20:23:15 +03:00
2020-06-20 11:27:17 +03:00
# Style - language keyword and framework type options
2018-02-08 20:23:15 +03:00
2020-06-20 11:27:17 +03:00
# prefer the language keyword for local variables, method parameters, and class members, instead of the type name, for types that have a keyword to represent them
2019-04-22 15:33:23 +03:00
dotnet_style_predefined_type_for_locals_parameters_members = true:error
2018-02-08 20:23:15 +03:00
2020-06-20 11:27:17 +03:00
# Style - qualification options
2018-02-08 20:23:15 +03:00
2020-06-20 11:27:17 +03:00
# prefer events not to be prefaced with this. or Me. in Visual Basic
2019-04-22 15:33:23 +03:00
dotnet_style_qualification_for_event = false:error
2020-06-20 11:27:17 +03:00
# prefer fields not to be prefaced with this. or Me. in Visual Basic
2019-04-22 15:33:23 +03:00
dotnet_style_qualification_for_field = false:error
2020-06-20 11:27:17 +03:00
# prefer methods not to be prefaced with this. or Me. in Visual Basic
2019-04-22 15:33:23 +03:00
dotnet_style_qualification_for_method = false:error
2020-06-20 11:27:17 +03:00
# prefer properties not to be prefaced with this. or Me. in Visual Basic
2019-04-22 15:33:23 +03:00
dotnet_style_qualification_for_property = false:error
2018-02-08 20:23:15 +03:00
2019-04-22 15:33:23 +03:00
dotnet_style_object_initializer = false:warning
dotnet_style_collection_initializer = true:error
dotnet_style_explicit_tuple_names = true:error
2018-02-08 20:23:15 +03:00
2019-07-01 11:00:55 +03:00
csharp_prefer_simple_default_expression = true:error
2018-02-08 20:23:15 +03:00
2019-04-22 15:33:23 +03:00
csharp_indent_case_contents = true:warning
csharp_indent_switch_labels = true:warning
2021-12-19 12:36:09 +03:00
csharp_style_namespace_declarations = file_scoped:warning
2018-02-08 20:23:15 +03:00
2020-06-20 11:27:17 +03:00
# prefer 'is null' for reference equality checks
2019-07-01 11:00:55 +03:00
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:error
2020-06-20 11:27:17 +03:00
# prefer braces
2019-07-01 11:00:55 +03:00
csharp_prefer_braces = true:error
2020-06-20 11:27:17 +03:00
# do not suggest readonly fields
2019-07-15 05:11:29 +03:00
dotnet_style_readonly_field = false:error
2019-09-25 06:45:23 +03:00
# use expression body for lambdas
2019-11-23 08:57:34 +03:00
csharp_style_expression_bodied_lambdas = true:suggestion
2019-09-25 06:45:23 +03:00
2019-09-29 06:07:31 +03:00
# IDE0066: Convert switch statement to expression
csharp_style_prefer_switch_expression = true:error
2019-10-03 00:18:27 +03:00
# IDE0063: Use simple 'using' statement
csharp_prefer_simple_using_statement = true:error
# IDE0054: Use compound assignment
dotnet_style_prefer_compound_assignment = true:error
2019-10-03 19:59:09 +03:00
# IDE0062: Make local function 'static'
csharp_prefer_static_local_function = true:error
2018-02-08 20:23:15 +03:00
2019-08-25 04:52:36 +03:00
# name all constant or static fields using PascalCase
dotnet_naming_rule.constant_or_static_fields_should_be_pascal_case.severity = error
dotnet_naming_rule.constant_or_static_fields_should_be_pascal_case.symbols = constant_or_static_fields
dotnet_naming_rule.constant_or_static_fields_should_be_pascal_case.style = pascal_case_style
2018-02-08 20:23:15 +03:00
2019-08-25 04:52:36 +03:00
dotnet_naming_symbols.constant_or_static_fields.applicable_kinds = field
dotnet_naming_symbols.constant_or_static_fields.required_modifiers = const
dotnet_naming_symbols.constant_or_static_fields.required_modifiers = static
2018-02-08 20:23:15 +03:00
dotnet_naming_style.pascal_case_style.capitalization = pascal_case
2020-09-22 10:37:34 +03:00
# private fields should be _camelCase
dotnet_naming_rule.camel_case_for_private_fields.severity = error
dotnet_naming_rule.camel_case_for_private_fields.symbols = private_fields
dotnet_naming_rule.camel_case_for_private_fields.style = camel_case_underscore_style
2018-02-08 20:23:15 +03:00
2020-09-22 10:37:34 +03:00
dotnet_naming_symbols.private_fields.applicable_kinds = field
dotnet_naming_symbols.private_fields.applicable_accessibilities = private
2018-02-08 20:23:15 +03:00
dotnet_naming_style.camel_case_underscore_style.required_prefix = _
2019-08-25 04:52:36 +03:00
dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
2018-02-08 20:23:15 +03:00
2019-08-25 06:26:23 +03:00
# No other public/protected/protected_internal/private_protected fields are allowed
dotnet_naming_rule.disallowed_fields_rule.severity = error
dotnet_naming_rule.disallowed_fields_rule.symbols = disallowed_fields_symbols
dotnet_naming_rule.disallowed_fields_rule.style = disallowed_fields_style
dotnet_naming_symbols.disallowed_fields_symbols.applicable_kinds = field
dotnet_naming_symbols.disallowed_fields_symbols.applicable_accessibilities = public, protected_internal, protected, private_protected
# disallowed_fields_style - Anything that has this style applied is marked as disallowed
dotnet_naming_style.disallowed_fields_style.capitalization = all_upper
dotnet_naming_style.disallowed_fields_style.required_prefix = ____RULE_VIOLATION____
dotnet_naming_style.disallowed_fields_style.required_suffix = ____RULE_VIOLATION____
2019-07-16 04:44:36 +03:00
# async methods should end with Async suffix
dotnet_naming_rule.async_methods_end_with_async.severity = warning
2018-02-08 20:23:15 +03:00
dotnet_naming_rule.async_methods_end_with_async.symbols = any_async_methods
dotnet_naming_rule.async_methods_end_with_async.style = end_with_async
2019-07-16 04:44:36 +03:00
2018-02-08 20:23:15 +03:00
dotnet_naming_symbols.any_async_methods.applicable_kinds = method
dotnet_naming_symbols.any_async_methods.applicable_accessibilities = *
dotnet_naming_symbols.any_async_methods.required_modifiers = async
2019-07-16 04:44:36 +03:00
2018-02-08 20:23:15 +03:00
dotnet_naming_style.end_with_async.required_suffix = Async
2018-08-08 16:19:40 +03:00
dotnet_naming_style.end_with_async.capitalization = pascal_case
2019-07-16 04:32:44 +03:00
# Interfaces must be IPascalCase
dotnet_naming_rule.interfaces_I_pascal_case.severity = error
dotnet_naming_rule.interfaces_I_pascal_case.symbols = interfaces_symbols
dotnet_naming_rule.interfaces_I_pascal_case.style = I_pascal_case_style
dotnet_naming_symbols.interfaces_symbols.applicable_kinds = interface
dotnet_naming_symbols.interfaces_symbols.applicable_accessibilities = *
dotnet_naming_style.I_pascal_case_style.required_prefix = I
dotnet_naming_style.I_pascal_case_style.capitalization = pascal_case
2019-07-16 07:01:53 +03:00
# name most members using PascalCase (except interface, field, local, parameter, type_parameter)
dotnet_naming_rule.most_members_must_be_pascal_case.severity = error
dotnet_naming_rule.most_members_must_be_pascal_case.symbols = most_members_symbols
dotnet_naming_rule.most_members_must_be_pascal_case.style = pascal_case_style
2019-10-03 21:19:12 +03:00
dotnet_naming_symbols.most_members_symbols.applicable_kinds = class, struct, enum, property, method, event, namespace, local_function
2019-07-16 07:01:53 +03:00
dotnet_naming_symbols.most_members_symbols.applicable_accessibilities = *
2019-07-16 07:09:17 +03:00
# name Local variables & parameters using camelCase
dotnet_naming_rule.local_variables_and_parameters_camel_case.severity = error
dotnet_naming_rule.local_variables_and_parameters_camel_case.symbols = local_variables_and_parameters_symbols
dotnet_naming_rule.local_variables_and_parameters_camel_case.style = camel_case_style
dotnet_naming_symbols.local_variables_and_parameters_symbols.applicable_kinds = local,parameter
dotnet_naming_style.camel_case_style.capitalization = camel_case
2020-02-06 05:58:05 +03:00
# name local constant using PascalCase
dotnet_naming_rule.local_const_pascal_case.severity = error
dotnet_naming_rule.local_const_pascal_case.symbols = local_const
dotnet_naming_rule.local_const_pascal_case.style = pascal_case_style
dotnet_naming_symbols.local_const.applicable_kinds = local
dotnet_naming_symbols.local_const.required_modifiers = const
dotnet_naming_style.pascal_case_style.capitalization = pascal_case
2019-07-16 07:15:28 +03:00
# all type parameters should be TPascalCase
dotnet_naming_rule.type_parameters_T_pascal_case.severity = error
dotnet_naming_rule.type_parameters_T_pascal_case.symbols = type_parameters_symbols
dotnet_naming_rule.type_parameters_T_pascal_case.style = T_pascal_case_style
dotnet_naming_symbols.type_parameters_symbols.applicable_kinds = type_parameter
dotnet_naming_style.T_pascal_case_style.required_prefix = T
dotnet_naming_style.T_pascal_case_style.capitalization = pascal_case
2019-07-17 16:44:46 +03:00
2024-03-22 23:29:33 +03:00
# IDE0004: Remove Unnecessary Cast
dotnet_diagnostic.IDE0004.severity = error
# IDE0019: Use pattern matching
csharp_style_pattern_matching_over_as_with_null_check = true:error
2019-11-18 20:09:32 +03:00
2024-04-25 19:55:45 +03:00
# IDE0028: Simplify collection initialization
dotnet_diagnostic.IDE0028.severity = silent
2019-12-22 05:11:22 +03:00
# IDE0032: Use auto property
dotnet_style_prefer_auto_properties = true:error
2024-03-22 23:29:33 +03:00
# IDE0056: Use index operator
csharp_style_prefer_index_operator = true:error
2020-01-20 03:16:11 +03:00
# IDE0057: Use range operator
csharp_style_prefer_range_operator = true:error
2020-03-23 18:15:19 +03:00
# IDE0071: Simplify interpolation
dotnet_style_prefer_simplified_interpolation = true:error
2021-10-07 15:12:07 +03:00
# IDE0130: Warn and provide code fixes for when namespaces do not match the folder structure.
dotnet_diagnostic.IDE0130.severity = warning
2024-04-25 19:55:45 +03:00
# IDE0290: Use primary constructor
dotnet_diagnostic.IDE0290.severity = silent
# IDE0300: Simplify collection initialization
dotnet_diagnostic.IDE0300.severity = silent
# IDE0305: Simplify collection initialization
dotnet_diagnostic.IDE0305.severity = silent
2023-03-20 22:02:46 +03:00
# CA1304: Specify CultureInfo
dotnet_diagnostic.CA1304.severity = warning
# CA1305: Specify IFormatProvider
dotnet_diagnostic.CA1305.severity = warning
2024-03-22 23:29:33 +03:00
# CA1816: Dispose methods should call SuppressFinalize
dotnet_diagnostic.CA1816.severity = none
# CA1822: This complains to make functions static. Static is evil. Don't let it complain.
dotnet_diagnostic.CA1822.severity = none
# CA1825: Avoid zero-length array allocations
dotnet_diagnostic.CA1825.severity = warning
# CA1827: Do not use Count() or LongCount() when Any() can be used
dotnet_diagnostic.CA1827.severity = warning
# CA1829: Use Length/Count property instead of Count() when available
dotnet_diagnostic.CA1829.severity = warning
# CA1835: Prefer the 'Memory'-based overloads for 'ReadAsync' and 'WriteAsync'
dotnet_diagnostic.CA1835.severity = warning
2021-10-07 15:12:07 +03:00
# CA1841: Prefer Dictionary Contains methods
dotnet_diagnostic.CA1841.severity = warning
# CA1845: Use span-based 'string.Concat'
dotnet_diagnostic.CA1845.severity = warning
# CA1846: Prefer AsSpan over Substring
dotnet_diagnostic.CA1846.severity = warning
2021-10-07 15:12:07 +03:00
# CA1847: Use string.Contains(char) instead of string.Contains(string) with single characters
dotnet_diagnostic.CA1847.severity = warning
2024-03-22 23:29:33 +03:00
# CA1859: Use concrete types when possible for improved performance
dotnet_diagnostic.CA1859.severity = none
2024-05-08 18:35:14 +03:00
# CA1865-CA1867: Use 'string.Method(char)' instead of 'string.Method(string)' for string with single char
dotnet_diagnostic.CA1865.severity = warning
dotnet_diagnostic.CA1866.severity = warning
dotnet_diagnostic.CA1867.severity = warning
2024-03-22 23:29:33 +03:00
# CA1868: Unnecessary call to Set.Contains(item)
dotnet_diagnostic.CA1868.severity = warning
2020-12-03 23:29:05 +03:00
2020-12-03 23:53:52 +03:00
# CA2000: Dispose objects before losing scope
dotnet_diagnostic.CA2000.severity = warning
2020-12-04 16:10:10 +03:00
2021-10-07 15:12:07 +03:00
# CA2009: Do not call ToImmutableCollection on an ImmutableCollection value
dotnet_diagnostic.CA2009.severity = warning
2024-03-22 23:29:33 +03:00
# CA2016: Forward the 'CancellationToken' parameter to methods that take one
dotnet_diagnostic.CA2016.severity = warning
2020-12-14 17:58:14 +03:00
2020-12-14 16:50:08 +03:00
# CA2200: Rethrow to preserve stack details
dotnet_diagnostic.CA2200.severity = warning
2020-12-16 16:20:29 +03:00
2024-02-12 22:56:09 +03:00
# xUnit1030: Do not call ConfigureAwait in test method
2024-04-09 17:03:36 +03:00
dotnet_diagnostic.xUnit1030.severity = warning
# RS0030: Do not use banned APIs
dotnet_diagnostic.RS0030.severity = error