WalletWasabi/.editorconfig

289 строки
12 KiB
INI
Исходник Обычный вид История

# 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
# For all files.
[*]
charset = utf-8
# Formatting - remove any whitespace characters preceding newline characters
trim_trailing_whitespace = true
[*.{cs,csproj}]
2020-07-23 09:00:15 +03:00
# use hard tabs for indentation
indent_style = tab
2020-11-12 17:07:54 +03:00
indent_size = 4
# 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
# require braces to be on a new line for all
csharp_new_line_before_open_brace = all
2019-04-22 15:33:23 +03:00
# Formatting - organize using options
2019-04-22 15:33:23 +03:00
# do not place System.* using directives before other using directives
2019-04-22 15:33:23 +03:00
dotnet_sort_system_directives_first = true:error
# 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
# 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
# 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
# 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
# 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
# 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
# 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
# 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
# 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
# Formatting - wrapping options
2019-04-22 15:33:23 +03:00
# leave code block on single line
2019-04-22 15:33:23 +03:00
csharp_preserve_single_line_blocks = true:error
# leave statements and member declarations on the same line
2019-04-22 15:33:23 +03:00
csharp_preserve_single_line_statements = true:error
# Style - expression bodied member options
2019-04-22 15:33:23 +03:00
# prefer expression-bodied members for accessors
2019-04-22 15:33:23 +03:00
csharp_style_expression_bodied_accessors = true:suggestion
# prefer block bodies for constructors
2019-04-22 15:33:23 +03:00
csharp_style_expression_bodied_constructors = false:suggestion
# prefer expression-bodied members for operators
2019-04-22 15:33:23 +03:00
csharp_style_expression_bodied_operators = true:suggestion
# prefer expression-bodied members for properties
2019-04-22 15:33:23 +03:00
csharp_style_expression_bodied_properties = true:suggestion
# Style - expression level options
2019-04-22 15:33:23 +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
# 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
# Style - language keyword and framework type options
2018-02-08 20:23:15 +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
# Style - qualification options
2018-02-08 20:23:15 +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
# 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
# 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
# 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
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
2018-02-08 20:23:15 +03:00
# prefer 'is null' for reference equality checks
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:error
# prefer braces
csharp_prefer_braces = true:error
# do not suggest readonly fields
2019-07-15 05:11:29 +03:00
dotnet_style_readonly_field = false:error
# use expression body for lambdas
2019-11-23 08:57:34 +03:00
csharp_style_expression_bodied_lambdas = true:suggestion
2019-09-29 06:07:31 +03:00
# IDE0066: Convert switch statement to expression
csharp_style_prefer_switch_expression = true:error
# IDE0063: Use simple 'using' statement
csharp_prefer_simple_using_statement = true:error
# IDE0054: Use compound assignment
dotnet_style_prefer_compound_assignment = true:error
# IDE0062: Make local function 'static'
csharp_prefer_static_local_function = true:error
2018-02-08 20:23:15 +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
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 = _
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
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 = *
# 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
# 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-11-18 20:09:32 +03:00
# IDE0056: Use index operator
csharp_style_prefer_index_operator = true:error
2019-12-22 05:11:22 +03:00
# IDE0032: Use auto property
dotnet_style_prefer_auto_properties = 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
2020-04-20 17:29:25 +03:00
# IDE0004: Remove Unnecessary Cast
dotnet_diagnostic.IDE0004.severity = error
2020-04-20 17:52:50 +03:00
# IDE0019: Use pattern matching
csharp_style_pattern_matching_over_as_with_null_check = true:error
# IDE0130: Warn and provide code fixes for when namespaces do not match the folder structure.
dotnet_diagnostic.IDE0130.severity = warning
# 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
# CA1847: Use string.Contains(char) instead of string.Contains(string) with single characters
dotnet_diagnostic.CA1847.severity = warning
# CA2016: Forward the 'CancellationToken' parameter to methods that take one
dotnet_diagnostic.CA2016.severity = warning
# CA2000: Dispose objects before losing scope
dotnet_diagnostic.CA2000.severity = warning
# CA2009: Do not call ToImmutableCollection on an ImmutableCollection value
dotnet_diagnostic.CA2009.severity = warning
# CA1825: Avoid zero-length array allocations
dotnet_diagnostic.CA1825.severity = warning
# CA1829: Use Length/Count property instead of Count() when available
dotnet_diagnostic.CA1829.severity = warning
2020-12-07 16:40:26 +03:00
# CA1816: Dispose methods should call SuppressFinalize
dotnet_diagnostic.CA1816.severity = none
2020-12-14 13:10:14 +03:00
2020-12-14 13:56:07 +03:00
# CA1835: Prefer the 'Memory'-based overloads for 'ReadAsync' and 'WriteAsync'
dotnet_diagnostic.CA1835.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
2020-12-14 13:10:14 +03:00
# CA1827: Do not use Count() or LongCount() when Any() can be used
dotnet_diagnostic.CA1827.severity = warning
2021-04-23 14:17:45 +03:00
# CA1822: This complains to make functions static. Static is evil. Don't let it complain.
dotnet_diagnostic.CA1822.severity = none