Skip to content

Instantly share code, notes, and snippets.

@pluto-dev
Forked from RealDotNetDave/.editorConfig
Created October 26, 2023 08:31

Revisions

  1. @RealDotNetDave RealDotNetDave revised this gist Aug 1, 2023. 1 changed file with 899 additions and 559 deletions.
    1,458 changes: 899 additions & 559 deletions .editorConfig
    899 additions, 559 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
  2. @RealDotNetDave RealDotNetDave revised this gist May 1, 2023. 1 changed file with 113 additions and 105 deletions.
    218 changes: 113 additions & 105 deletions .editorConfig
    Original file line number Diff line number Diff line change
    @@ -1,18 +1,18 @@
    # dotNetDave's (David McCarter) Editor Config - dotNetTips.com
    # Updates to this file are posted quarterly at: https://bit.ly/EditorConfig5
    # Updated February 2023
    # Updated May 2023
    # dotNetDave's books available at: http://bit.ly/RockYourCodeBooks
    # Rockin' the Code World with dotNetDave (weekly live show): https://www.c-sharpcorner.com/live/rockin-the-code-world-with-dotnetdave

    root = true

    # All Files
    [*]
    charset = utf-8
    end_of_line = crlf
    indent_size = 4
    indent_style = tab
    insert_final_newline = true
    charset = utf-8
    end_of_line = crlf
    indent_size = 4
    indent_style = tab
    insert_final_newline = true
    csharp_using_directive_placement = outside_namespace:warning
    csharp_style_unused_value_expression_statement_preference = discard_variable:suggestion
    csharp_style_unused_value_assignment_preference = discard_variable:suggestion
    @@ -40,7 +40,7 @@ csharp_style_expression_bodied_constructors = true:warning
    csharp_style_expression_bodied_accessors = true:warning
    csharp_style_deconstructed_variable_declaration = true:warning
    csharp_style_conditional_delegate_call = true:warning
    csharp_style_allow_embedded_statements_on_same_line_experimental = true:suggestion
    csharp_style_allow_embedded_statements_on_same_line_experimental = true:silent
    csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true:silent
    csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true:silent
    csharp_space_around_binary_operators = before_and_after
    @@ -49,6 +49,14 @@ csharp_prefer_simple_using_statement = false:silent
    csharp_prefer_simple_default_expression = true:warning
    csharp_prefer_braces = true:suggestion
    csharp_indent_labels = one_less_than_current
    csharp_style_prefer_pattern_matching = true:warning
    csharp_style_pattern_matching_over_is_with_cast_check = true:warning
    csharp_style_pattern_matching_over_as_with_null_check = true:warning
    csharp_style_prefer_not_pattern = true:warning
    csharp_style_prefer_extended_property_pattern = true:suggestion
    csharp_style_var_for_built_in_types = true:warning
    csharp_style_var_when_type_is_apparent = true:warning
    csharp_style_var_elsewhere = true:warning

    # Visual Studio Solution Files
    [*.sln]
    @@ -258,7 +266,7 @@ dotnet_naming_rule.stylecop_local_fields_must_be_camel_case_rule.severity = sile
    # Second, it helps to raise immediate awareness if a new field type is added (as occurred recently in C#).
    dotnet_naming_symbols.sanity_check_uncovered_field_case_group.applicable_kinds = field
    dotnet_naming_symbols.sanity_check_uncovered_field_case_group.applicable_accessibilities = *
    dotnet_naming_rule.sanity_check_uncovered_field_case_rule.symbols = sanity_check_uncovered_field_case_group
    dotnet_naming_rule.sanity_check_uncovered_field_case_rule.symbols = sanity_check_uncovered_field_case_group
    dotnet_naming_rule.sanity_check_uncovered_field_case_rule.style = internal_error_style
    dotnet_naming_rule.sanity_check_uncovered_field_case_rule.severity = error
    ##########################################
    @@ -310,26 +318,26 @@ dotnet_naming_rule.parameters_rule.severity = warning

    # Type Parameters
    dotnet_naming_style.type_parameter_style.required_prefix = T
    dotnet_naming_style.type_parameter_style.capitalization = pascal_case
    dotnet_naming_style.type_parameter_style.capitalization = pascal_case

    dotnet_naming_rule.type_parameter_naming.severity = warning
    dotnet_naming_rule.type_parameter_naming.style = type_parameter_style
    dotnet_naming_rule.type_parameter_naming.symbols = type_parameter_symbol
    dotnet_naming_rule.type_parameter_naming.severity = warning
    dotnet_naming_rule.type_parameter_naming.style = type_parameter_style
    dotnet_naming_rule.type_parameter_naming.symbols = type_parameter_symbol
    dotnet_naming_symbols.type_parameter_symbol.applicable_accessibilities = *
    dotnet_naming_symbols.type_parameter_symbol.applicable_kinds = type_parameter
    dotnet_naming_symbols.type_parameter_symbol.applicable_kinds = type_parameter

    # Instance fields are camelCase and start with _
    dotnet_naming_symbols.private_internal_fields.applicable_kinds = field
    dotnet_naming_symbols.private_internal_fields.applicable_kinds = field
    dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal
    dotnet_naming_symbols.instance_fields.applicable_kinds = field
    dotnet_naming_style.instance_field_style.required_prefix = _
    dotnet_naming_style.instance_field_style.capitalization = camel_case
    dotnet_naming_style.camel_case_underscore_style.required_prefix = _
    dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
    dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields
    dotnet_naming_symbols.instance_fields.applicable_kinds = field
    dotnet_naming_style.instance_field_style.required_prefix = _
    dotnet_naming_style.instance_field_style.capitalization = camel_case
    dotnet_naming_style.camel_case_underscore_style.required_prefix = _
    dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
    dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields
    dotnet_naming_rule.instance_fields_should_be_camel_case.style = camel_case_underscore_style
    dotnet_naming_rule.instance_fields_should_be_camel_case.severity = suggestion
    dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
    dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
    dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style
    dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion

    @@ -343,14 +351,14 @@ dotnet_naming_symbols.local_functions.applicable_kinds = lo

    # "this." and "Me." qualifiers
    dotnet_style_qualification_for_property = true:warning
    dotnet_style_qualification_for_method = true:warning
    dotnet_style_qualification_for_field = true:warning
    dotnet_style_qualification_for_event = true:warning
    dotnet_style_qualification_for_method = true:warning
    dotnet_style_qualification_for_field = true:warning
    dotnet_style_qualification_for_event = true:warning

    # Parentheses preferences
    dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:warning
    dotnet_style_parentheses_in_other_operators = never_if_unnecessary:warning
    dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:warning
    dotnet_style_parentheses_in_other_operators = never_if_unnecessary:warning
    dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:warning
    dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:warning

    # Undocumented
    @@ -602,16 +610,16 @@ dotnet_diagnostic.CA1802.severity=suggestion
    dotnet_diagnostic.CA1805.severity=error

    # Do not ignore method results
    dotnet_diagnostic.CA1806.severity=warning
    dotnet_diagnostic.CA1806.severity=error

    # Initialize reference type static fields inline
    dotnet_diagnostic.CA1810.severity=error

    # Avoid uninstantiated internal classes
    dotnet_diagnostic.CA1812.severity=suggestion
    dotnet_diagnostic.CA1812.severity=warning

    # Avoid unsealed attributes
    dotnet_diagnostic.CA1813.severity= warning
    dotnet_diagnostic.CA1813.severity= error

    # Prefer jagged arrays over multidimensional
    dotnet_diagnostic.CA1814.severity= warning
    @@ -638,7 +646,7 @@ dotnet_diagnostic.CA1823.severity=error
    dotnet_diagnostic.CA1824.severity=suggestion

    # Avoid zero-length array allocations
    dotnet_diagnostic.CA1825.severity=suggestion
    dotnet_diagnostic.CA1825.severity=warning

    # Use property instead of Linq Enumerable method
    dotnet_diagnostic.CA1826.severity= warning
    @@ -689,19 +697,19 @@ dotnet_diagnostic.CA1840.severity = warning
    dotnet_diagnostic.CA1841.severity=warning

    # Do not use 'WhenAll' with a single task
    dotnet_diagnostic.CA1842.severity=warning
    dotnet_diagnostic.CA1842.severity=error

    # Do not use 'WaitAll' with a single task
    dotnet_diagnostic.CA1843.severity=warning
    dotnet_diagnostic.CA1843.severity=error

    # Provide memory-based overrides of async methods when subclassing 'Stream'
    dotnet_diagnostic.CA1844.severity=suggestion
    dotnet_diagnostic.CA1844.severity=warning

    # Use span-based 'string.Concat'
    dotnet_diagnostic.CA1845.severity=suggestion
    dotnet_diagnostic.CA1845.severity=warning

    # Prefer AsSpan over Substring
    dotnet_diagnostic.CA1846.severity=suggestion
    dotnet_diagnostic.CA1846.severity=warning

    # Use string.Contains(char) instead of string.Contains(string) with single character
    dotnet_diagnostic.CA1847.severity= warning
    @@ -716,22 +724,22 @@ dotnet_diagnostic.CA1849.severity=warning
    dotnet_diagnostic.CA1850.severity=warning

    # Possible multiple enumerations of IEnumerable collection
    dotnet_diagnostic.CA1851.severity = suggestion
    dotnet_diagnostic.CA1851.severity = warning

    # Seal internal types
    dotnet_diagnostic.CA1852.severity = warning

    # Unnecessary call to 'Dictionary.ContainsKey(key)'
    dotnet_diagnostic.CA1853.severity = warning
    dotnet_diagnostic.CA1853.severity = error

    # Prefer the IDictionary.TryGetValue(TKey, out TValue) method
    dotnet_diagnostic.CA1854.severity = warning
    dotnet_diagnostic.CA1854.severity = error

    # Use Span<T>.Clear() instead of Span<T>.Fill()
    dotnet_analyzer_diagnostic.category-Performance.severity = warning
    dotnet_analyzer_diagnostic.category-Performance.severity = error

    # Use StartsWith instead of IndexOf
    dotnet_analyzer_diagnostic.category-Performance.severity = warning
    dotnet_analyzer_diagnostic.category-Performance.severity = error

    # Add readonly modifier
    dotnet_diagnostic.IDE0044.severity=warning
    @@ -1438,15 +1446,15 @@ dotnet_sort_system_directives_first = true
    dotnet_separate_import_directive_groups = false

    # IDE1006 (Naming rule violation)
    dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
    dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.public_symbols.required_modifiers = readonly
    dotnet_naming_symbols.public_symbols.applicable_kinds = property,method,field,event,delegate
    dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
    dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.public_symbols.required_modifiers = readonly
    dotnet_naming_symbols.public_symbols.applicable_kinds = property, method, field, event, delegate
    dotnet_naming_symbols.public_symbols.applicable_accessibilities = public
    dotnet_naming_symbols.interface.applicable_kinds = interface
    dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_style.first_word_upper_case_style.capitalization = first_word_upper
    dotnet_naming_rule.public_members_must_be_capitalized.symbols = public_symbols
    dotnet_naming_symbols.interface.applicable_kinds = interface
    dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_style.first_word_upper_case_style.capitalization = first_word_upper
    dotnet_naming_rule.public_members_must_be_capitalized.symbols = public_symbols
    dotnet_naming_rule.public_members_must_be_capitalized.style = first_word_upper_case_style
    dotnet_naming_rule.public_members_must_be_capitalized.severity = warning
    dotnet_diagnostic.IDE1006.severity=silent
    @@ -1808,24 +1816,24 @@ dotnet_diagnostic.ENUM0002.severity = warning
    dotnet_diagnostic.ENUM0003.severity = warning

    tab_width = 4
    dotnet_style_allow_multiple_blank_lines_experimental = false:suggestion
    dotnet_style_allow_multiple_blank_lines_experimental = false:suggestion
    dotnet_style_allow_statement_immediately_after_block_experimental = true:suggestion
    dotnet_style_namespace_match_folder = true:suggestion
    dotnet_style_namespace_match_folder = true:suggestion

    # Prefer "var" everywhere (Implicit and explicit types)
    csharp_style_var_when_type_is_apparent = true:warning
    csharp_style_var_for_built_in_types= true:warning
    csharp_style_var_elsewhere = true:warning
    csharp_style_var_for_built_in_types = true:warning
    csharp_style_var_elsewhere = true:warning

    # Modifier preferences
    csharp_prefer_static_local_function = true:warning
    csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:warning
    dotnet_style_readonly_field = true:warning
    csharp_prefer_static_local_function = true:warning
    csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:warning
    dotnet_style_readonly_field = true:warning
    dotnet_style_require_accessibility_modifiers = always:warning
    visual_basic_preferred_modifier_order = Partial,Default,Private,Protected,Public,Friend,NotOverridable,Overridable,MustOverride,Overloads,Overrides,MustInherit,NotInheritable,Static,Shared,Shadows,ReadOnly,WriteOnly,Dim,Const,WithEvents,Widening,Narrowing,Custom,Async:warning
    visual_basic_preferred_modifier_order = Partial, Default, Private, Protected, Public, Friend, NotOverridable, Overridable, MustOverride, Overloads, Overrides, MustInherit, NotInheritable, Static, Shared, Shadows, ReadOnly, WriteOnly, Dim, Const, WithEvents, Widening, Narrowing, Custom, Async:warning

    # Code-block preferences
    csharp_prefer_braces = true:suggestion
    csharp_prefer_braces = true:suggestion
    csharp_prefer_simple_using_statement = false:silent

    # C# Style Rules
    @@ -1837,13 +1845,13 @@ csharp_prefer_simple_using_statement = false:silent
    csharp_new_line_before_catch = true
    csharp_new_line_before_else = true
    csharp_new_line_before_finally = true
    csharp_new_line_before_members_in_anonymous_types = true
    csharp_new_line_before_members_in_object_initializers = true
    csharp_new_line_before_open_brace = all
    csharp_new_line_between_query_expression_clauses = true
    csharp_new_line_before_members_in_anonymous_types = true
    csharp_new_line_before_members_in_object_initializers = true
    csharp_new_line_before_open_brace = all
    csharp_new_line_between_query_expression_clauses = true

    # C# Unnecessary code rules
    csharp_style_unused_value_assignment_preference = discard_variable:suggestion
    csharp_style_unused_value_assignment_preference = discard_variable:suggestion
    csharp_style_unused_value_expression_statement_preference = discard_variable:suggestion

    # Simplify name
    @@ -1895,31 +1903,31 @@ dotnet_diagnostic.IDE0110.severity = suggestion
    dotnet_diagnostic.IDE0140.severity=suggestion

    # Expression-level preferences
    csharp_prefer_simple_default_expression = true:warning
    csharp_style_deconstructed_variable_declaration = true:warning
    csharp_prefer_simple_default_expression = true:warning
    csharp_style_deconstructed_variable_declaration = true:warning
    csharp_style_implicit_object_creation_when_type_is_apparent = true:warning
    csharp_style_inlined_variable_declaration = true:warning
    csharp_style_pattern_local_over_anonymous_function = true:warning
    csharp_style_prefer_index_operator = true:warning
    csharp_style_prefer_range_operator = true:warning
    csharp_style_inlined_variable_declaration = true:warning
    csharp_style_pattern_local_over_anonymous_function = true:warning
    csharp_style_prefer_index_operator = true:warning
    csharp_style_prefer_range_operator = true:warning

    # 'using' directive preferences
    csharp_using_directive_placement = outside_namespace:warning

    # Expression-Bodied members
    csharp_style_expression_bodied_properties = true:warning
    csharp_style_expression_bodied_operators = true:warning
    csharp_style_expression_bodied_methods = true:warning
    csharp_style_expression_bodied_properties = true:warning
    csharp_style_expression_bodied_operators = true:warning
    csharp_style_expression_bodied_methods = true:warning
    csharp_style_expression_bodied_local_functions = true:warning
    csharp_style_expression_bodied_lambdas = true:warning
    csharp_style_expression_bodied_indexers = true:warning
    csharp_style_expression_bodied_constructors = true:warning
    csharp_style_expression_bodied_accessors = true:warning
    csharp_style_expression_bodied_lambdas = true:warning
    csharp_style_expression_bodied_indexers = true:warning
    csharp_style_expression_bodied_constructors = true:warning
    csharp_style_expression_bodied_accessors = true:warning

    # Pattern matching preferences
    csharp_style_prefer_switch_expression = true:warning
    csharp_style_prefer_pattern_matching = true:warning
    csharp_style_prefer_not_pattern = true:warning
    csharp_style_prefer_switch_expression = true:warning
    csharp_style_prefer_pattern_matching = true:warning
    csharp_style_prefer_not_pattern = true:warning
    csharp_style_pattern_matching_over_is_with_cast_check = true:warning
    csharp_style_pattern_matching_over_as_with_null_check = true:warning

    @@ -1929,41 +1937,41 @@ csharp_style_throw_expression = true:warning

    # Spacing options
    # https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/formatting-rules#spacing-options
    csharp_space_after_cast = false
    csharp_space_after_colon_in_inheritance_clause = true
    csharp_space_after_comma = true
    csharp_space_after_dot = false
    csharp_space_after_keywords_in_control_flow_statements = true
    csharp_space_after_semicolon_in_for_statement = true
    csharp_space_around_binary_operators = before_and_after
    csharp_space_around_declaration_statements = false
    csharp_space_before_colon_in_inheritance_clause = true
    csharp_space_before_comma = false
    csharp_space_before_dot = false
    csharp_space_before_open_square_brackets = false
    csharp_space_before_semicolon_in_for_statement = false
    csharp_space_between_empty_square_brackets = false
    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_after_cast = false
    csharp_space_after_colon_in_inheritance_clause = true
    csharp_space_after_comma = true
    csharp_space_after_dot = false
    csharp_space_after_keywords_in_control_flow_statements = true
    csharp_space_after_semicolon_in_for_statement = true
    csharp_space_around_binary_operators = before_and_after
    csharp_space_around_declaration_statements = false
    csharp_space_before_colon_in_inheritance_clause = true
    csharp_space_before_comma = false
    csharp_space_before_dot = false
    csharp_space_before_open_square_brackets = false
    csharp_space_before_semicolon_in_for_statement = false
    csharp_space_between_empty_square_brackets = false
    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_name_and_open_parenthesis = false
    csharp_space_between_method_declaration_parameter_list_parentheses = false
    csharp_space_between_parentheses = false
    csharp_space_between_square_brackets = false
    csharp_space_between_method_declaration_name_and_open_parenthesis = false
    csharp_space_between_method_declaration_parameter_list_parentheses = false
    csharp_space_between_parentheses = false
    csharp_space_between_square_brackets = false

    # Wrap options
    # https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/formatting-rules#wrap-options
    csharp_preserve_single_line_blocks = true
    csharp_preserve_single_line_blocks = true
    csharp_preserve_single_line_statements = true

    #Indentation preferences
    csharp_indent_switch_labels = true
    csharp_indent_labels = one_less_than_current
    csharp_indent_switch_labels = true
    csharp_indent_labels = one_less_than_current
    csharp_indent_case_contents_when_block = true
    csharp_indent_case_contents = true
    csharp_indent_braces = false
    csharp_indent_block_contents = true
    csharp_indent_case_contents = true
    csharp_indent_braces = false
    csharp_indent_block_contents = true

    # Namespace options
    # https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/formatting-rules#namespace-options
  3. @RealDotNetDave RealDotNetDave revised this gist Feb 3, 2023. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion .editorConfig
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    # dotNetDave's (David McCarter) Editor Config - dotNetTips.com
    # Updates to this file are posted quarterly at: https://bit.ly/EditorConfig5
    # Updated January 2023
    # Updated February 2023
    # dotNetDave's books available at: http://bit.ly/RockYourCodeBooks
    # Rockin' the Code World with dotNetDave (weekly live show): https://www.c-sharpcorner.com/live/rockin-the-code-world-with-dotnetdave

  4. @RealDotNetDave RealDotNetDave revised this gist Feb 3, 2023. 1 changed file with 799 additions and 717 deletions.
    1,516 changes: 799 additions & 717 deletions .editorConfig
    799 additions, 717 deletions not shown because the diff is too large. Please use a local Git client to view these changes.
  5. @RealDotNetDave RealDotNetDave revised this gist Jan 16, 2023. 1 changed file with 475 additions and 307 deletions.
    782 changes: 475 additions & 307 deletions .editorConfig
    Original file line number Diff line number Diff line change
    @@ -1,155 +1,382 @@
    #dotNetDave's Editor Config - dotNetTips.com
    #Suppress: EC116
    # dotNetDave's (David McCarter) Editor Config - dotNetTips.com

    root = true

    # All Files
    [*]
    charset = utf-8-bom
    charset = utf-8
    end_of_line = crlf
    indent_size = 4
    indent_style = tab
    insert_final_newline = true

    #Code files
    [*.{cs,csx,vb,vbx}]
    charset = utf-8-bom

    #Xml project files
    csharp_using_directive_placement = outside_namespace:warning
    csharp_prefer_simple_using_statement = false:silent
    csharp_prefer_braces = true:suggestion
    csharp_style_namespace_declarations = file_scoped:warning
    csharp_style_prefer_method_group_conversion = true:silent
    csharp_style_prefer_top_level_statements = true:silent
    csharp_style_expression_bodied_methods = true:warning
    csharp_style_expression_bodied_constructors = true:warning
    csharp_style_expression_bodied_operators = true:warning
    csharp_style_expression_bodied_properties = true:warning
    csharp_style_expression_bodied_indexers = true:warning
    csharp_style_expression_bodied_accessors = true:warning
    csharp_style_expression_bodied_lambdas = true:warning
    csharp_style_expression_bodied_local_functions = true:warning
    csharp_indent_labels = one_less_than_current
    csharp_style_throw_expression = true:warning
    csharp_style_prefer_null_check_over_type_check = true:warning
    csharp_prefer_simple_default_expression = true:warning
    csharp_space_around_binary_operators = before_and_after
    csharp_style_prefer_local_over_anonymous_function = true:suggestion
    csharp_style_prefer_index_operator = true:warning
    csharp_style_prefer_range_operator = true:warning
    csharp_style_implicit_object_creation_when_type_is_apparent = true:warning
    csharp_style_prefer_tuple_swap = true:suggestion
    csharp_style_prefer_utf8_string_literals = true:suggestion
    csharp_style_inlined_variable_declaration = true:warning
    csharp_style_deconstructed_variable_declaration = true:warning
    csharp_style_unused_value_assignment_preference = discard_variable:suggestion
    csharp_style_unused_value_expression_statement_preference = discard_variable:suggestion
    csharp_prefer_static_local_function = true:warning
    csharp_style_prefer_readonly_struct = true:suggestion
    csharp_style_allow_embedded_statements_on_same_line_experimental = true:suggestion
    csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true:silent
    csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true:silent
    csharp_style_conditional_delegate_call = true:warning
    csharp_style_prefer_switch_expression = true:warning
    dotnet_diagnostic.IDE0071.severity = warning
    dotnet_diagnostic.IDE2000.severity = suggestion
    csharp_style_prefer_pattern_matching = true:warning
    csharp_style_pattern_matching_over_is_with_cast_check = true:warning
    csharp_style_pattern_matching_over_as_with_null_check = true:warning
    csharp_style_prefer_not_pattern = true:warning
    csharp_style_prefer_extended_property_pattern = true:suggestion
    csharp_style_var_for_built_in_types = true:warning
    csharp_style_var_when_type_is_apparent = true:warning
    csharp_style_var_elsewhere = true:suggestion
    dotnet_diagnostic.IDE0051.severity = error
    dotnet_diagnostic.CA1311.severity = warning
    dotnet_diagnostic.CA1812.severity = warning
    dotnet_diagnostic.CA1845.severity = warning
    dotnet_diagnostic.IDE0009.severity = warning
    dotnet_diagnostic.IDE0010.severity = warning
    dotnet_diagnostic.IDE0016.severity = error
    dotnet_diagnostic.IDE0018.severity = silent
    dotnet_diagnostic.IDE0058.severity = warning
    dotnet_diagnostic.IDE0059.severity = warning
    dotnet_diagnostic.IDE0110.severity = suggestion

    # Visual Studio Solution Files
    [*.sln]
    indent_style = tab

    # Visual Studio XML Project Files
    [*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
    indent_size = 4
    indent_size = 2

    #Xml config files
    # XML Configuration Files
    [*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct,xml,stylecop}]
    indent_size = 2

    #JSON files
    [*.{json,json5}]
    # JSON Files
    [*.{json,json5,webmanifest}]
    indent_size = 2

    #YAML Files
    [*.{yml,yaml}]
    indent_size = 2

    #Shell scripts
    # Markdown Files
    [*.{md,mdx}]
    trim_trailing_whitespace = false

    # Bash Files
    [*.sh]
    end_of_line = lf

    # Batch Files
    [*.{cmd,bat}]
    end_of_line = crlf

    #Web Files
    [*.{htm,html,js,ts,css,scss,less}]
    # Web Files
    [*.{htm,html,js,jsm,ts,tsx,cjs,cts,ctsx,mjs,mts,mtsx,css,sass,scss,less,pcss,svg,vue}]
    indent_size = 2
    insert_final_newline = true

    [*.{cs,vb}]
    # Makefiles
    [Makefile]
    indent_style = tab

    ##########################################
    # Default .NET Code Style Severities
    # https://docs.microsoft.com/dotnet/fundamentals/code-analysis/configuration-options#scope
    ##########################################

    ##########################################
    # Language Rules
    # https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/language-rules
    ##########################################

    # .NET Style Rules
    # https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/language-rules#net-style-rules
    [*.{cs,csx,cake,vb,vbx}]

    dotnet_diagnostic.CA1014.severity = none

    #Non-private static fields are PascalCase
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.severity = warning
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.symbols = non_private_static_fields
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.symbols = non_private_static_fields

    dotnet_naming_symbols.non_private_static_fields.applicable_kinds = field
    dotnet_naming_symbols.non_private_static_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected
    dotnet_naming_symbols.non_private_static_fields.applicable_kinds = field
    dotnet_naming_symbols.non_private_static_fields.required_modifiers = static

    dotnet_naming_style.non_private_static_field_style.capitalization = pascal_case

    #Constants are PascalCase
    dotnet_naming_rule.constants_should_be_pascal_case.severity = warning
    dotnet_naming_rule.constants_should_be_pascal_case.symbols = constants
    dotnet_naming_rule.constants_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_rule.constants_should_be_pascal_case.symbols = constants

    dotnet_naming_symbols.constants.applicable_kinds = field, local
    dotnet_naming_symbols.constants.required_modifiers = const
    dotnet_naming_symbols.constants.applicable_kinds = field, local

    dotnet_naming_style.constant_style.capitalization = pascal_case

    #Locals and parameters are camelCase
    dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters
    dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style
    dotnet_naming_rule.locals_should_be_camel_case.severity = warning

    # camel_case_style - Define the camelCase style
    dotnet_naming_symbols.static_fields.required_modifiers = static
    dotnet_naming_symbols.locals_and_parameters.applicable_kinds = parameter, local
    dotnet_naming_style.static_field_style.required_prefix = s_
    dotnet_naming_style.camel_case_style.capitalization = camel_case
    dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters
    dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style
    dotnet_naming_rule.locals_should_be_camel_case.severity = warning

    # first_upper_style - The first character must start with an upper-case character
    dotnet_naming_style.first_upper_style.capitalization = first_word_upper

    # prefix_interface_with_i_style - Interfaces must be PascalCase and the first character of an interface must be an 'I'
    dotnet_naming_style.prefix_interface_with_i_style.capitalization = pascal_case
    dotnet_naming_style.prefix_interface_with_i_style.required_prefix = I

    # prefix_type_parameters_with_t_style - Generic Type Parameters must be PascalCase and the first character must be a 'T'
    dotnet_naming_style.prefix_type_parameters_with_t_style.required_prefix = T
    dotnet_naming_style.prefix_type_parameters_with_t_style.capitalization = pascal_case

    # disallowed_style - Anything that has this style applied is marked as disallowed
    dotnet_naming_style.disallowed_style.required_suffix = ____RULE_VIOLATION____
    dotnet_naming_style.disallowed_style.required_prefix = ____RULE_VIOLATION____
    dotnet_naming_style.disallowed_style.capitalization = pascal_case

    # internal_error_style - This style should never occur... if it does, it indicates a bug in file or in the parser using the file
    dotnet_naming_style.internal_error_style.required_suffix = ____INTERNAL_ERROR____
    dotnet_naming_style.internal_error_style.required_prefix = ____INTERNAL_ERROR____
    dotnet_naming_style.internal_error_style.capitalization = pascal_case

    # All public/protected/protected_internal constant fields must be PascalCase
    # https://docs.microsoft.com/dotnet/standard/design-guidelines/field
    dotnet_naming_symbols.public_protected_constant_fields_group.required_modifiers = const
    dotnet_naming_symbols.public_protected_constant_fields_group.applicable_kinds = field
    dotnet_naming_symbols.public_protected_constant_fields_group.applicable_accessibilities = public, protected, protected_internal
    dotnet_naming_rule.public_protected_constant_fields_must_be_pascal_case_rule.symbols = public_protected_constant_fields_group
    dotnet_naming_rule.public_protected_constant_fields_must_be_pascal_case_rule.style = non_private_static_field_style
    dotnet_naming_rule.public_protected_constant_fields_must_be_pascal_case_rule.severity = warning

    # All public/protected/protected_internal static readonly fields must be PascalCase
    # https://docs.microsoft.com/dotnet/standard/design-guidelines/field
    dotnet_naming_symbols.public_protected_static_readonly_fields_group.required_modifiers = static, readonly
    dotnet_naming_symbols.public_protected_static_readonly_fields_group.applicable_kinds = field
    dotnet_naming_symbols.public_protected_static_readonly_fields_group.applicable_accessibilities = public, protected, protected_internal
    dotnet_naming_rule.public_protected_static_readonly_fields_must_be_pascal_case_rule.symbols = public_protected_static_readonly_fields_group
    dotnet_naming_rule.public_protected_static_readonly_fields_must_be_pascal_case_rule.style = non_private_static_field_style
    dotnet_naming_rule.public_protected_static_readonly_fields_must_be_pascal_case_rule.severity = warning

    # No other public/protected/protected_internal fields are allowed
    # https://docs.microsoft.com/dotnet/standard/design-guidelines/field
    dotnet_naming_symbols.other_public_protected_fields_group.applicable_kinds = field
    dotnet_naming_symbols.other_public_protected_fields_group.applicable_accessibilities = public, protected, protected_internal
    dotnet_naming_rule.other_public_protected_fields_disallowed_rule.symbols = other_public_protected_fields_group
    dotnet_naming_rule.other_public_protected_fields_disallowed_rule.style = disallowed_style
    dotnet_naming_rule.other_public_protected_fields_disallowed_rule.severity = error

    ##########################################
    # StyleCop Field Naming Rules
    # Naming rules for fields follow the StyleCop analyzers
    # This does not override any rules using disallowed_style above
    # https://github.com/DotNetAnalyzers/StyleCopAnalyzers
    ##########################################

    # All constant fields must be PascalCase
    # https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1303.md
    dotnet_naming_symbols.stylecop_constant_fields_group.applicable_accessibilities = public, internal, protected_internal, protected, private_protected, private
    dotnet_naming_rule.stylecop_constant_fields_must_be_pascal_case_rule.severity = warning
    dotnet_naming_rule.stylecop_constant_fields_must_be_pascal_case_rule.style = non_private_static_field_style
    dotnet_naming_rule.stylecop_constant_fields_must_be_pascal_case_rule.symbols = stylecop_constant_fields_group
    dotnet_naming_symbols.stylecop_constant_fields_group.applicable_kinds = field
    dotnet_naming_symbols.stylecop_constant_fields_group.required_modifiers = const

    # All static readonly fields must be PascalCase
    # https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1311.md
    dotnet_naming_rule.stylecop_static_readonly_fields_must_be_pascal_case_rule.severity = warning
    dotnet_naming_rule.stylecop_static_readonly_fields_must_be_pascal_case_rule.style = non_private_static_field_style
    dotnet_naming_rule.stylecop_static_readonly_fields_must_be_pascal_case_rule.symbols = stylecop_static_readonly_fields_group
    dotnet_naming_symbols.stylecop_static_readonly_fields_group.applicable_accessibilities = public, internal, protected_internal, protected, private_protected, private
    dotnet_naming_symbols.stylecop_static_readonly_fields_group.applicable_kinds = field
    dotnet_naming_symbols.stylecop_static_readonly_fields_group.required_modifiers = static, readonly

    # No non-private instance fields are allowed
    # https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1401.md
    dotnet_naming_symbols.stylecop_fields_must_be_private_group.applicable_kinds = field
    dotnet_naming_symbols.stylecop_fields_must_be_private_group.applicable_accessibilities = public, internal, protected_internal, protected, private_protected
    dotnet_naming_rule.stylecop_instance_fields_must_be_private_rule.symbols = stylecop_fields_must_be_private_group
    dotnet_naming_rule.stylecop_instance_fields_must_be_private_rule.style = disallowed_style
    dotnet_naming_rule.stylecop_instance_fields_must_be_private_rule.severity = error

    # Private fields must be camelCase
    # https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1306.md
    dotnet_naming_rule.stylecop_private_fields_must_be_camel_case_rule.severity = warning
    dotnet_naming_rule.stylecop_private_fields_must_be_camel_case_rule.style = camel_case_style
    dotnet_naming_rule.stylecop_private_fields_must_be_camel_case_rule.symbols = stylecop_private_fields_group
    dotnet_naming_symbols.stylecop_private_fields_group.applicable_accessibilities = private
    dotnet_naming_symbols.stylecop_private_fields_group.applicable_kinds = field

    # Local variables must be camelCase
    # https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1312.md
    dotnet_naming_rule.stylecop_local_fields_must_be_camel_case_rule.severity = silent
    dotnet_naming_rule.stylecop_local_fields_must_be_camel_case_rule.style = camel_case_style
    dotnet_naming_rule.stylecop_local_fields_must_be_camel_case_rule.symbols = stylecop_local_fields_group
    dotnet_naming_symbols.stylecop_local_fields_group.applicable_accessibilities = local
    dotnet_naming_symbols.stylecop_local_fields_group.applicable_kinds = local

    # This rule should never fire. However, it's included for at least two purposes:
    # First, it helps to understand, reason about, and root-case certain types of issues, such as bugs in .editorconfig parsers.
    # Second, it helps to raise immediate awareness if a new field type is added (as occurred recently in C#).
    dotnet_naming_rule.sanity_check_uncovered_field_case_rule.severity = error
    dotnet_naming_rule.sanity_check_uncovered_field_case_rule.style = internal_error_style
    dotnet_naming_rule.sanity_check_uncovered_field_case_rule.symbols = sanity_check_uncovered_field_case_group
    dotnet_naming_symbols.sanity_check_uncovered_field_case_group.applicable_accessibilities = *
    dotnet_naming_symbols.sanity_check_uncovered_field_case_group.applicable_kinds = field

    # All of the following must be PascalCase:
    # - Namespaces
    # https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-namespaces
    # https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1300.md
    # - Classes and Enumerations
    # https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-classes-structs-and-interfaces
    # https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1300.md
    # - Delegates
    # https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-classes-structs-and-interfaces#names-of-common-types
    # - Constructors, Properties, Events, Methods
    # https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-type-members
    dotnet_naming_rule.element_rule.severity = warning
    dotnet_naming_rule.element_rule.style = non_private_static_field_style
    dotnet_naming_rule.element_rule.symbols = element_group
    dotnet_naming_symbols.element_group.applicable_kinds = namespace, class, enum, struct, delegate, event, method, property

    # Interfaces use PascalCase and are prefixed with uppercase 'I'
    # https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-classes-structs-and-interfaces
    dotnet_naming_rule.interface_rule.severity = warning
    dotnet_naming_rule.interface_rule.style = prefix_interface_with_i_style
    dotnet_naming_rule.interface_rule.symbols = interface_group
    dotnet_naming_symbols.interface_group.applicable_kinds = interface

    # Generics Type Parameters use PascalCase and are prefixed with uppercase 'T'
    # https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-classes-structs-and-interfaces
    dotnet_naming_rule.type_parameter_rule.severity = warning
    dotnet_naming_rule.type_parameter_rule.style = prefix_type_parameters_with_t_style
    dotnet_naming_rule.type_parameter_rule.symbols = type_parameter_group
    dotnet_naming_symbols.type_parameter_group.applicable_kinds = type_parameter

    # Function parameters use camelCase
    # https://docs.microsoft.com/dotnet/standard/design-guidelines/naming-parameters
    dotnet_naming_rule.parameters_rule.severity = warning
    dotnet_naming_rule.parameters_rule.style = camel_case_style
    dotnet_naming_rule.parameters_rule.symbols = parameters_group
    dotnet_naming_symbols.parameters_group.applicable_kinds = parameter

    #Type Parameters
    dotnet_naming_style.type_parameter_style.required_prefix = T
    dotnet_naming_style.type_parameter_style.capitalization = pascal_case
    dotnet_naming_style.type_parameter_style.required_prefix = T

    dotnet_naming_rule.type_parameter_naming.severity = warning
    dotnet_naming_rule.type_parameter_naming.style = type_parameter_style
    dotnet_naming_rule.type_parameter_naming.symbols = type_parameter_symbol
    dotnet_naming_symbols.type_parameter_symbol.applicable_accessibilities = *
    dotnet_naming_symbols.type_parameter_symbol.applicable_kinds = type_parameter
    dotnet_naming_symbols.type_parameter_symbol.applicable_accessibilities = *
    dotnet_naming_rule.type_parameter_naming.symbols = type_parameter_symbol
    dotnet_naming_rule.type_parameter_naming.style = type_parameter_style
    dotnet_naming_rule.type_parameter_naming.severity = warning

    #Instance fields are camelCase and start with _
    dotnet_naming_symbols.private_internal_fields.applicable_kinds = field
    dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal
    dotnet_naming_symbols.instance_fields.applicable_kinds = field
    dotnet_naming_style.instance_field_style.required_prefix = _
    dotnet_naming_style.instance_field_style.capitalization = camel_case
    dotnet_naming_style.camel_case_underscore_style.required_prefix = _
    dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
    dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields
    dotnet_naming_rule.instance_fields_should_be_camel_case.style = camel_case_underscore_style
    dotnet_naming_rule.instance_fields_should_be_camel_case.severity = suggestion
    dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
    dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style
    dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion
    dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style
    dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
    dotnet_naming_rule.instance_fields_should_be_camel_case.severity = suggestion
    dotnet_naming_rule.instance_fields_should_be_camel_case.style = camel_case_underscore_style
    dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields
    dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
    dotnet_naming_style.camel_case_underscore_style.required_prefix = _
    dotnet_naming_style.instance_field_style.capitalization = camel_case
    dotnet_naming_style.instance_field_style.required_prefix = _
    dotnet_naming_symbols.instance_fields.applicable_kinds = field
    dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal
    dotnet_naming_symbols.private_internal_fields.applicable_kinds = field

    #Local functions are PascalCase
    dotnet_diagnostic.CS8618.severity = silent
    dotnet_naming_rule.local_functions_should_be_pascal_case.severity = warning
    dotnet_naming_rule.local_functions_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = all_members
    dotnet_naming_style.local_function_style.capitalization = pascal_case
    dotnet_naming_symbols.local_functions.applicable_kinds = local_function
    dotnet_naming_style.local_function_style.capitalization = pascal_case
    dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = all_members
    dotnet_naming_rule.local_functions_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_rule.local_functions_should_be_pascal_case.severity = warning
    dotnet_diagnostic.CS8618.severity = silent

    #this. and Me. preferences
    dotnet_style_qualification_for_property = true:suggestion
    dotnet_style_qualification_for_method = true:suggestion
    dotnet_style_qualification_for_field = true : suggestion
    dotnet_style_qualification_for_event = true:suggestion
    # "this." and "Me." qualifiers
    dotnet_style_qualification_for_event = true:warning
    dotnet_style_qualification_for_field = true:warning
    dotnet_style_qualification_for_method = true:warning
    dotnet_style_qualification_for_property = true:warning

    #Parentheses preferences
    dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:suggestion
    dotnet_style_parentheses_in_other_operators = never_if_unnecessary:suggestion
    dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:suggestion
    dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:suggestion
    dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:warning
    dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:warning
    dotnet_style_parentheses_in_other_operators = never_if_unnecessary:warning
    dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:warning

    # Undocumented
    dotnet_style_operator_placement_when_wrapping = end_of_line

    # Naming styles
    dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning
    dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
    dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
    dotnet_naming_rule.types_should_be_pascal_case.severity = warning
    dotnet_naming_rule.types_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_rule.types_should_be_pascal_case.symbols = types
    dotnet_naming_rule.types_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_rule.types_should_be_pascal_case.severity = warning
    dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
    dotnet_naming_rule.interface_should_be_begins_with_i.style = prefix_interface_with_i_style
    dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning

    #By default, name items with PascalCase
    dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning
    dotnet_naming_rule.non_field_members_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
    dotnet_naming_style.pascal_case_style.capitalization = pascal_case
    dotnet_naming_rule.non_field_members_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning

    # pascal_case_style - Define the PascalCase style
    dotnet_naming_symbols.all_members.applicable_kinds = *
    dotnet_naming_style.pascal_case_style.capitalization = pascal_case

    #Symbol specifications
    dotnet_naming_symbols.interface.required_modifiers =
    dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
    dotnet_naming_symbols.non_field_members.required_modifiers = *
    dotnet_naming_symbols.types.required_modifiers =
    dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
    dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected

    #Naming styles
    dotnet_naming_style.begins_with_i.capitalization = pascal_case
    dotnet_naming_style.begins_with_i.required_prefix = I
    dotnet_naming_style.begins_with_i.required_suffix =
    dotnet_naming_style.begins_with_i.word_separator =
    dotnet_naming_style.pascal_case.capitalization = pascal_case
    dotnet_naming_style.pascal_case.required_prefix =
    dotnet_naming_style.pascal_case.required_suffix =
    dotnet_naming_style.pascal_case.word_separator =
    dotnet_naming_style.pascal_case.required_suffix =
    dotnet_naming_style.pascal_case.required_prefix =
    dotnet_naming_style.pascal_case.capitalization = pascal_case
    dotnet_naming_style.begins_with_i.word_separator =
    dotnet_naming_style.begins_with_i.required_suffix =
    dotnet_naming_style.begins_with_i.required_prefix = I
    dotnet_naming_style.begins_with_i.capitalization = pascal_case

    #### Diagnostic ####

    @@ -181,7 +408,7 @@ dotnet_diagnostic.CA1506.severity=warning
    dotnet_diagnostic.CA1507.severity=suggestion

    #CA1508: Avoid dead conditional code
    dotnet_diagnostic.CA1508.severity=suggestion
    dotnet_diagnostic.CA1508.severity= warning

    #CA1509: Invalid entry in code metrics configuration file
    dotnet_diagnostic.CA1509.severity=suggestion
    @@ -282,7 +509,6 @@ dotnet_diagnostic.IDISP024.severity = error
    #IDISP025 Class with no virtual dispose method should be sealed
    dotnet_diagnostic.IDISP025.severity = error

    dotnet_diagnostic.IDE0063.severity = silent

    dotnet_diagnostic.IDE0130.severity = warning

    @@ -328,7 +554,7 @@ dotnet_diagnostic.CA1720.severity=warning
    dotnet_diagnostic.CA1721.severity=warning

    #CA1724: Type names should not match namespaces
    dotnet_diagnostic.CA1724.severity=suggestion
    dotnet_diagnostic.CA1724.severity= suggestion

    #CA1725: Parameter names should match base declaration
    dotnet_diagnostic.CA1725.severity=warning
    @@ -354,10 +580,10 @@ dotnet_diagnostic.CA1810.severity=error
    dotnet_diagnostic.CA1812.severity=suggestion

    # CA1813: Avoid unsealed attributes
    dotnet_diagnostic.CA1813.severity=suggestion
    dotnet_diagnostic.CA1813.severity= warning

    # CA1814: Prefer jagged arrays over multidimensional
    dotnet_diagnostic.CA1814.severity=suggestion
    dotnet_diagnostic.CA1814.severity= warning

    # CA1815: Override equals and operator equals on value types
    dotnet_diagnostic.CA1815.severity=warning
    @@ -371,9 +597,6 @@ dotnet_diagnostic.CA1820.severity=warning
    # CA1821: Remove empty finalizers
    dotnet_diagnostic.CA1821.severity=error

    # CA1822: Mark members as static
    dotnet_diagnostic.CA1822.severity=suggestion

    # CA1823: Avoid unused private fields
    dotnet_diagnostic.CA1823.severity=error

    @@ -384,31 +607,31 @@ dotnet_diagnostic.CA1824.severity=suggestion
    dotnet_diagnostic.CA1825.severity=suggestion

    # CA1826: Use property instead of Linq Enumerable method
    dotnet_diagnostic.CA1826.severity=suggestion
    dotnet_diagnostic.CA1826.severity= warning

    # CA1827: Do not use Count/LongCount when Any can be used
    dotnet_diagnostic.CA1827.severity=suggestion

    # CA1829: Use Length/Count property instead of Enumerable.Count method
    dotnet_diagnostic.CA1829.severity=suggestion
    dotnet_diagnostic.CA1829.severity= warning

    # CA1830: Prefer strongly-typed Append and Insert method overloads on StringBuilder.
    dotnet_diagnostic.CA1830.severity=suggestion
    dotnet_diagnostic.CA1830.severity= warning

    # CA1831: Use AsSpan instead of Range-based indexers for string when appropriate
    dotnet_diagnostic.CA1831.severity=suggestion
    dotnet_diagnostic.CA1831.severity= warning

    # CA1832: Use AsSpan or AsMemory instead of Range-based indexers for getting ReadOnlySpan or ReadOnlyMemory portion of an array
    dotnet_diagnostic.CA1832.severity=suggestion
    dotnet_diagnostic.CA1832.severity= warning

    # CA1833: Use AsSpan or AsMemory instead of Range-based indexers for getting Span or Memory portion of an array
    dotnet_diagnostic.CA1833.severity=suggestion
    dotnet_diagnostic.CA1833.severity= warning

    # CA1834: Use StringBuilder.Append(char) for single character strings
    dotnet_diagnostic.CA1834.severity=suggestion
    dotnet_diagnostic.CA1834.severity= warning

    # CA1835: Prefer the memory-based overloads of ReadAsync/WriteAsync methods in stream-based classes
    dotnet_diagnostic.CA1835.severity=suggestion
    dotnet_diagnostic.CA1835.severity= warning

    #CA1836: Prefer IsEmpty over Count when available
    dotnet_diagnostic.CA1836.severity=warning
    @@ -438,7 +661,7 @@ dotnet_diagnostic.CA1845.severity=suggestion
    dotnet_diagnostic.CA1846.severity=suggestion

    #CA1847: Use string.Contains(char) instead of string.Contains(string) with single character
    dotnet_diagnostic.CA1847.severity=suggestion
    dotnet_diagnostic.CA1847.severity= warning

    #CA1848: Use the LoggerMessage delegates
    dotnet_diagnostic.CA1848.severity=warning
    @@ -489,7 +712,7 @@ dotnet_diagnostic.CA2013.severity=suggestion
    #CA2014: Do not use stackalloc in loops
    dotnet_diagnostic.CA2014.severity=error

    #CA2015: Do not define finalizers for types derived from MemoryManager<T>
    #CA2015: Do not define finalizers for types derived from MemoryManager
    dotnet_diagnostic.CA2015.severity=error

    #CA2016: Forward the CancellationToken parameter to methods that take one
    @@ -600,28 +823,28 @@ dotnet_diagnostic.CA3003.severity=warning
    dotnet_diagnostic.CA3004.severity=warning

    #CA3005: Review code for LDAP injection vulnerabilities
    dotnet_diagnostic.CA3005.severity = none
    dotnet_diagnostic.CA3005.severity = warning

    #CA3006: Review code for process command injection vulnerabilities
    dotnet_diagnostic.CA3006.severity = none
    dotnet_diagnostic.CA3006.severity = warning

    #CA3007: Review code for open redirect vulnerabilities
    dotnet_diagnostic.CA3007.severity = none
    dotnet_diagnostic.CA3007.severity = warning

    #CA3008: Review code for XPath injection vulnerabilities
    dotnet_diagnostic.CA3008.severity = none
    dotnet_diagnostic.CA3008.severity = warning

    #CA3009: Review code for XML injection vulnerabilities
    dotnet_diagnostic.CA3009.severity = none
    dotnet_diagnostic.CA3009.severity = warning

    #CA3010: Review code for XAML injection vulnerabilities
    dotnet_diagnostic.CA3010.severity = none
    dotnet_diagnostic.CA3010.severity = warning

    #CA3011: Review code for DLL injection vulnerabilities
    dotnet_diagnostic.CA3011.severity = none
    dotnet_diagnostic.CA3011.severity = warning

    #CA3012: Review code for regex injection vulnerabilities
    dotnet_diagnostic.CA3012.severity = none
    dotnet_diagnostic.CA3012.severity = warning

    #CA3061: Do Not Add Schema By URL
    dotnet_diagnostic.CA3061.severity = warning
    @@ -645,7 +868,7 @@ dotnet_diagnostic.CA5350.severity = warning
    dotnet_diagnostic.CA5351.severity = warning

    #CA5358: Do Not Use Unsafe Cipher Modes
    dotnet_diagnostic.CA5358.severity = none
    dotnet_diagnostic.CA5358.severity = warning

    #CA5359: Do Not Disable Certificate Validation
    dotnet_diagnostic.CA5359.severity = warning
    @@ -657,7 +880,7 @@ dotnet_diagnostic.CA5360.severity = warning
    dotnet_diagnostic.CA5361.severity = warning

    #CA5362: Do Not Refer Self In Serializable Class
    dotnet_diagnostic.CA5362.severity = none
    dotnet_diagnostic.CA5362.severity = error

    #CA5363: Do Not Disable Request Validation
    dotnet_diagnostic.CA5363.severity = warning
    @@ -672,7 +895,7 @@ dotnet_diagnostic.CA5365.severity = warning
    dotnet_diagnostic.CA5366.severity = warning

    #CA5367: Do Not Serialize Types With Pointer Fields
    dotnet_diagnostic.CA5367.severity = none
    dotnet_diagnostic.CA5367.severity = warning

    #CA5368: Set ViewStateUserKey For Classes Derived From Page
    dotnet_diagnostic.CA5368.severity = warning
    @@ -696,7 +919,7 @@ dotnet_diagnostic.CA5373.severity = warning
    dotnet_diagnostic.CA5374.severity = warning

    #CA5375: Do Not Use Account Shared Access Signature
    dotnet_diagnostic.CA5375.severity = none
    dotnet_diagnostic.CA5375.severity = warning

    #CA5376: Use SharedAccessProtocol HttpsOnly
    dotnet_diagnostic.CA5376.severity = warning
    @@ -808,7 +1031,7 @@ dotnet_diagnostic.CA2208.severity=error
    dotnet_diagnostic.CA2211.severity=error

    #CA2213: Disposable fields should be disposed
    dotnet_diagnostic.CA2213.severity=warning
    dotnet_diagnostic.CA2213.severity= error

    #CA2214: Do not call overridable methods in constructors
    dotnet_diagnostic.CA2214.severity=warning
    @@ -911,9 +1134,9 @@ dotnet_diagnostic.CA228.severity=warning

    #### Language Rules ####
    #this and Me preferences (IDE0003 and IDE0009)
    dotnet_diagnostic.IDE0003.severity=suggestion
    dotnet_diagnostic.IDE0009.severity=suggestion
    dotnet_style_qualification_for_field = true:suggestion
    dotnet_diagnostic.IDE0009.severity=suggestion
    dotnet_diagnostic.IDE0003.severity=suggestion

    # Simplify name (IDE0001)
    dotnet_diagnostic.IDE0001.severity=warning
    @@ -935,7 +1158,6 @@ dotnet_diagnostic.IDE0035.severity=warning

    #Order modifiers (IDE0036)
    dotnet_diagnostic.IDE0036.severity=warning
    csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async : warning

    #Add accessibility modifiers (IDE0040)
    dotnet_diagnostic.IDE0040.severity=error
    @@ -946,20 +1168,19 @@ dotnet_diagnostic.IDE0043.severity = warning
    #Add readonly modifier (IDE0044)
    dotnet_diagnostic.IDE0044.severity=warning

    #Use language keywords instead of framework type names for type references (IDE0049)
    dotnet_diagnostic.IDE0049.severity=suggestion
    # Language keywords instead of framework type names for type references
    dotnet_style_predefined_type_for_locals_parameters_members = true:warning
    dotnet_style_predefined_type_for_member_access = true:warning

    #Use language keywords instead of framework type names for type references (IDE0049)
    dotnet_diagnostic.IDE0049.severity=suggestion

    #Convert anonymous type to tuple (IDE0050)
    dotnet_diagnostic.IDE0050.severity=suggestion

    #Remove unused private member (IDE0051)
    dotnet_diagnostic.IDE0051.severity=suggestion

    #Remove unused private member (IDE0052)
    dotnet_diagnostic.IDE0052.severity=suggestion

    #Use index operator (IDE0056)
    dotnet_diagnostic.IDE0056.severity=suggestion

    @@ -978,19 +1199,15 @@ dotnet_diagnostic.IDE0090.severity=suggestion
    #???
    dotnet_diagnostic.IDE0120.severity=suggestion

    #Modifier preferences
    dotnet_style_require_accessibility_modifiers = for_non_interface_members:warning

    #Make local function static (IDE0062)
    dotnet_diagnostic.IDE0062.severity=suggestion
    csharp_prefer_static_local_function = true : suggestion

    #Make struct fields writable (IDE0064)
    dotnet_diagnostic.IDE0064.severity=suggestion

    #Parentheses preferences (IDE0047 and IDE0048)
    dotnet_diagnostic.IDE0047.severity=warning
    dotnet_diagnostic.IDE0048.severity=warning
    dotnet_diagnostic.IDE0047.severity=warning

    #Add missing cases to switch statement (IDE0010)
    dotnet_diagnostic.IDE0010.severity=suggestion
    @@ -1012,7 +1229,6 @@ dotnet_diagnostic.IDE0033.severity=suggestion

    #Simplify 'default' expression (IDE0034)
    dotnet_diagnostic.IDE0034.severity=suggestion
    csharp_prefer_simple_default_expression = true : suggestion

    #Use inferred member name (IDE0037)
    dotnet_diagnostic.IDE0037.severity=suggestion
    @@ -1023,18 +1239,12 @@ dotnet_diagnostic.IDE0039.severity=suggestion
    #Deconstruct variable declaration (IDE0042)
    dotnet_diagnostic.IDE0042.severity=suggestion

    #Use conditional expression for assignment (IDE0045)
    dotnet_diagnostic.IDE0045.severity=suggestion

    #Use conditional expression for return (IDE0046)
    dotnet_diagnostic.IDE0046.severity=suggestion

    #Convert anonymous type to tuple (IDE0050)
    dotnet_diagnostic.IDE050.severity=suggestion

    #Use compound assignment (IDE0054 and IDE0074)
    dotnet_diagnostic.IDE0054.severity=suggestion
    dotnet_diagnostic.IDE0074.severity=suggestion
    dotnet_diagnostic.IDE0054.severity=suggestion

    #Simplify conditional expression (IDE0075)
    dotnet_diagnostic.IDE0075.severity=suggestion
    @@ -1050,33 +1260,32 @@ dotnet_diagnostic.IDE0090.severity=suggestion
    dotnet_diagnostic.IDE0016.severity=warning

    #Use coalesce expression (IDE0029 and IDE0030)
    dotnet_diagnostic.IDE0029.severity=suggestion
    dotnet_diagnostic.IDE0030.severity=suggestion
    dotnet_diagnostic.IDE0029.severity=suggestion

    #Expression-level preferences
    dotnet_style_coalesce_expression = true:suggestion
    dotnet_style_collection_initializer = true:suggestion
    dotnet_style_explicit_tuple_names = true:suggestion
    dotnet_style_null_propagation = true:suggestion
    dotnet_style_object_initializer = true:suggestion
    dotnet_style_operator_placement_when_wrapping = beginning_of_line
    dotnet_style_prefer_auto_properties = true:suggestion
    dotnet_style_prefer_compound_assignment = true:suggestion
    dotnet_style_prefer_conditional_expression_over_assignment = true:suggestion
    dotnet_style_prefer_conditional_expression_over_return = true:suggestion
    dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
    dotnet_style_prefer_inferred_tuple_names = true:suggestion
    dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
    dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
    dotnet_style_prefer_simplified_interpolation = true:suggestion

    #Field preferences
    dotnet_style_readonly_field = true:warning
    # Expression-level preferences
    dotnet_diagnostic.IDE0045.severity = suggestion
    dotnet_diagnostic.IDE0046.severity = suggestion
    dotnet_style_collection_initializer = true:warning
    dotnet_style_explicit_tuple_names = true:warning
    dotnet_style_object_initializer = true:warning
    dotnet_style_prefer_auto_properties = true:warning
    dotnet_style_prefer_compound_assignment = true:warning
    dotnet_style_prefer_conditional_expression_over_assignment = false:suggestion
    dotnet_style_prefer_conditional_expression_over_return = false:suggestion
    dotnet_style_prefer_inferred_anonymous_type_member_names = true:warning
    dotnet_style_prefer_inferred_tuple_names = true:warning
    dotnet_style_prefer_simplified_boolean_expressions = false:silent
    dotnet_style_prefer_simplified_interpolation = true:warning

    # Null-checking preferences
    dotnet_style_prefer_is_null_check_over_reference_equality_method = true:warning
    dotnet_style_null_propagation = true:warning
    dotnet_style_coalesce_expression = true:warning

    #Parameter preferences
    dotnet_code_quality_unused_parameters = all:warning


    #Suppression preferences
    dotnet_remove_unnecessary_suppression_exclusions = none

    @@ -1090,8 +1299,8 @@ dotnet_diagnostic.IDE0041.severity=suggestion
    dotnet_diagnostic.IDE1005.severity=suggestion

    #'var' preferences (IDE0007 and IDE0008)
    dotnet_diagnostic.IDE0007.severity=warning
    dotnet_diagnostic.IDE0008.severity=warning
    dotnet_diagnostic.IDE0007.severity=warning

    #Use expression body for constructors (IDE0021)
    dotnet_diagnostic.IDE0021.severity=silent
    @@ -1100,8 +1309,8 @@ dotnet_diagnostic.IDE0021.severity=silent
    dotnet_diagnostic.IDE0022.severity=silent

    #Use expression body for operators (IDE0023 and IDE0024)
    dotnet_diagnostic.IDE0023.severity=warning
    dotnet_diagnostic.IDE0024.severity=silent
    dotnet_diagnostic.IDE0023.severity=warning

    #Use expression body for properties (IDE0025)
    dotnet_diagnostic.IDE0025.severity=warning
    @@ -1139,18 +1348,12 @@ visual_basic_style_prefer_isnot_expression = true : suggestion

    #Add braces (IDE0011)
    dotnet_diagnostic.IDE0011.severity=error
    csharp_prefer_braces = true : error

    # IDE0035: Remove unreachable code
    dotnet_diagnostic.IDE0035.severity = warning

    #Use simple 'using' statement (IDE0063)
    dotnet_diagnostic.IDE0063.severity=suggestion
    csharp_prefer_simple_using_statement = false : disabled

    #'using' directive placement (IDE0065)
    dotnet_diagnostic.IDE0065.severity=warning
    csharp_using_directive_placement = outside_namespace : warning

    #Require file header (IDE0073)
    dotnet_diagnostic.IDE0073.severity=warning
    @@ -1159,12 +1362,6 @@ file_header_template = unset
    #Remove unread private member (IDE0052)
    dotnet_diagnostic.IDE0052.severity=error

    #Remove unnecessary expression value (IDE0058)
    dotnet_diagnostic.IDE0058.severity=warning

    #Remove unnecessary value assignment (IDE0059)
    dotnet_diagnostic.IDE0059.severity=error

    #Remove unused parameter (IDE0060)
    dotnet_diagnostic.IDE0060.severity=error

    @@ -1175,51 +1372,42 @@ dotnet_diagnostic.IDE0079.severity=error
    dotnet_diagnostic.IDE0080.severity=suggestion

    #Remove ByVal (IDE0081)
    dotnet_diagnostic.IDE0080.severity=warning
    dotnet_diagnostic.IDE0081.severity=warning

    #Remove unnecessary equality operator (IDE0100)
    dotnet_diagnostic.IDE0100.severity=warning

    #Remove unnecessary discard (IDE0110)
    dotnet_diagnostic.IDE0110.severity=warning

    #Simplify object creation (IDE0140)
    dotnet_diagnostic.IDE0110.severity=suggestion
    dotnet_diagnostic.IDE0140.severity=suggestion
    visual_basic_style_prefer_simplified_object_creation = all : suggestion

    #IDE0055 (Fix formatting)
    dotnet_diagnostic.IDE0055.severity=warning
    dotnet_diagnostic.IDE0055.severity=none

    #Organize usings
    dotnet_separate_import_directive_groups = false
    dotnet_sort_system_directives_first = true
    dotnet_separate_import_directive_groups = false

    #IDE1006 (Naming rule violation)
    dotnet_diagnostic.IDE1006.severity=warning
    dotnet_naming_rule.public_members_must_be_capitalized.severity = warning
    dotnet_naming_rule.public_members_must_be_capitalized.style = first_word_upper_case_style
    dotnet_naming_rule.public_members_must_be_capitalized.symbols = public_symbols
    dotnet_naming_style.first_word_upper_case_style.capitalization = first_word_upper
    dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.interface.applicable_kinds = interface
    dotnet_naming_symbols.public_symbols.applicable_accessibilities = public
    dotnet_naming_symbols.public_symbols.applicable_kinds = property,method,field,event,delegate
    dotnet_naming_symbols.public_symbols.required_modifiers = readonly
    dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
    dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.public_symbols.required_modifiers = readonly
    dotnet_naming_symbols.public_symbols.applicable_kinds = property,method,field,event,delegate
    dotnet_naming_symbols.public_symbols.applicable_accessibilities = public
    dotnet_naming_symbols.interface.applicable_kinds = interface
    dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_style.first_word_upper_case_style.capitalization = first_word_upper
    dotnet_naming_rule.public_members_must_be_capitalized.symbols = public_symbols
    dotnet_naming_rule.public_members_must_be_capitalized.style = first_word_upper_case_style
    dotnet_naming_rule.public_members_must_be_capitalized.severity = warning
    dotnet_diagnostic.IDE1006.severity=silent

    # RS0016: Only enable if API files are present
    dotnet_public_api_analyzer.require_api_files = true

    # warning RS0005: Do not use generic CodeAction.Create to create CodeAction
    dotnet_diagnostic.RS0005.severity = none

    #### Unnecessary Code Rules ####

    #Remove unnecessary expression value (IDE0058)
    dotnet_diagnostic.IDE0058.severity=suggestion


    #### Design Rules ####
    #CA1000: Do not declare static members on generic typesk
    dotnet_diagnostic.CA1000.severity=suggestion
    @@ -1243,7 +1431,7 @@ dotnet_diagnostic.CA1008.severity=error
    dotnet_diagnostic.CA1008.severity=warning

    #CA1012: Abstract types should not have public constructors
    dotnet_diagnostic.CA1012.severity=warning
    dotnet_diagnostic.CA1012.severity= error

    #CA1014: Mark assemblies with CLSCompliantAttribute
    dotnet_diagnostic.CA1014.severity=none
    @@ -1252,7 +1440,7 @@ dotnet_diagnostic.CA1014.severity=none
    dotnet_diagnostic.CA1016.severity=error

    #CA1017: Mark assemblies with ComVisibleAttribute
    dotnet_diagnostic.CA1017.severity=suggestion
    dotnet_diagnostic.CA1017.severity= silent

    #CA1018: Mark attributes with AttributeUsageAttribute
    dotnet_diagnostic.CA1018.severity=suggestion
    @@ -1276,7 +1464,7 @@ dotnet_diagnostic.CA1028.severity=error
    dotnet_diagnostic.CA1030.severity=suggestion

    #CA1031: Do not catch general exception types
    dotnet_diagnostic.CA1031.severity=none
    dotnet_diagnostic.CA1031.severity= error

    #CA1032: Implement standard exception constructors
    dotnet_diagnostic.CA1032.severity=suggestion
    @@ -1463,7 +1651,7 @@ dotnet_diagnostic.SA1303.severity = error
    dotnet_diagnostic.SA1305.severity = warning

    #SA1308 VariableNamesMustNotBePrefixed
    dotnet_diagnostic.SA1308.severity = warning
    dotnet_diagnostic.SA1308.severity = error

    #SA1309 A field name in C# begins with an underscore.
    dotnet_diagnostic.SA1309.severity = warning
    @@ -1496,7 +1684,7 @@ dotnet_diagnostic.SA1513.severity = warning
    dotnet_diagnostic.SA1520.severity = warning

    #SA1636: File header copyright text should match
    dotnet_diagnostic.SA1636.severity = suggestion
    dotnet_diagnostic.SA1636.severity = none

    #SA1650 ElementDocumentationMustBeSpelledCorrectly
    dotnet_diagnostic.SA1650.severity = warning
    @@ -1562,7 +1750,7 @@ dotnet_diagnostic.CLASS0001.severity = warning
    #### Enum Rules ####

    #ENUM0001: Default switch label
    dotnet_diagnostic.ENUM0001.severity = warning
    dotnet_diagnostic.ENUM0001.severity = error

    #ENUM0002: Merge switch sections
    dotnet_diagnostic.ENUM0002.severity = warning
    @@ -1571,64 +1759,38 @@ dotnet_diagnostic.ENUM0002.severity = warning
    dotnet_diagnostic.ENUM0003.severity = warning

    tab_width = 4
    dotnet_style_allow_statement_immediately_after_block_experimental = true:silent
    dotnet_style_allow_multiple_blank_lines_experimental = false:suggestion
    dotnet_style_allow_statement_immediately_after_block_experimental = true:suggestion
    dotnet_style_namespace_match_folder = true:suggestion
    dotnet_style_allow_multiple_blank_lines_experimental = false:silent

    #### C# Coding Conventions ####
    [*.cs]

    #Prefer "var" everywhere (Implicit and explicit types)
    csharp_style_var_when_type_is_apparent = true:suggestion
    csharp_style_var_for_built_in_types = true:suggestion
    csharp_style_var_elsewhere = false:suggestion

    #Expression-Bodied members
    csharp_style_expression_bodied_properties = true:none
    csharp_style_expression_bodied_operators = false:silent
    csharp_style_expression_bodied_methods = false:silent
    csharp_style_expression_bodied_local_functions = false:silent
    csharp_style_expression_bodied_lambdas = true:silent
    csharp_style_expression_bodied_indexers = true:none
    csharp_style_expression_bodied_constructors = false:silent
    csharp_style_expression_bodied_accessors = true:none

    #Pattern matching preferences
    csharp_style_prefer_switch_expression = true:suggestion
    csharp_style_prefer_pattern_matching = true:silent
    csharp_style_prefer_not_pattern = true:suggestion
    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_conditional_delegate_call = true:warning

    #Modifier preferences
    csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion
    csharp_prefer_static_local_function = true:suggestion

    #Code-block preferences
    csharp_prefer_simple_using_statement = false:silent
    csharp_prefer_braces = true:suggestion
    # Prefer "var" everywhere (Implicit and explicit types)
    csharp_style_var_elsewhere = true:warning
    csharp_style_var_for_built_in_types= true:warning
    csharp_style_var_when_type_is_apparent = true:warning

    #Expression-level preferences
    csharp_style_unused_value_expression_statement_preference = discard_variable:silent
    csharp_style_unused_value_assignment_preference = discard_variable:suggestion
    csharp_style_throw_expression = true:suggestion
    csharp_style_prefer_range_operator = true:suggestion
    csharp_style_prefer_index_operator = true:suggestion
    csharp_style_pattern_local_over_anonymous_function = true:warning
    csharp_style_inlined_variable_declaration = true:suggestion
    csharp_style_implicit_object_creation_when_type_is_apparent = true:suggestion
    csharp_style_deconstructed_variable_declaration = true:warning
    csharp_prefer_simple_default_expression = true:warning

    #'using' directive preferences
    csharp_using_directive_placement = outside_namespace:warning

    #### C# Formatting Rules ####
    # Modifier preferences
    csharp_prefer_static_local_function = true:warning
    csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:warning
    dotnet_style_readonly_field = true:warning
    dotnet_style_require_accessibility_modifiers = always:warning
    visual_basic_preferred_modifier_order = Partial,Default,Private,Protected,Public,Friend,NotOverridable,Overridable,MustOverride,Overloads,Overrides,MustInherit,NotInheritable,Static,Shared,Shadows,ReadOnly,WriteOnly,Dim,Const,WithEvents,Widening,Narrowing,Custom,Async:warning

    #New line preferences
    # Code-block preferences
    csharp_prefer_braces = true:suggestion
    csharp_prefer_simple_using_statement = false:silent
    dotnet_diagnostic.CA1822.severity = warning
    dotnet_diagnostic.CA1839.severity = warning
    dotnet_diagnostic.CA1840.severity = warning
    dotnet_diagnostic.CA1852.severity = warning
    dotnet_diagnostic.CA1853.severity = warning
    dotnet_diagnostic.CA1854.severity = warning

    # C# Style Rules
    # https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/language-rules#c-style-rules
    [*.{cs,csx,cake}]

    # Newline options
    # https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/formatting-rules#new-line-options
    csharp_new_line_before_catch = true
    csharp_new_line_before_else = true
    csharp_new_line_before_finally = true
    @@ -1637,15 +1799,47 @@ csharp_new_line_before_members_in_object_initializers = true
    csharp_new_line_before_open_brace = all
    csharp_new_line_between_query_expression_clauses = true

    #Indentation preferences
    csharp_indent_switch_labels = true
    csharp_indent_labels = one_less_than_current
    csharp_indent_case_contents_when_block = true
    csharp_indent_case_contents = true
    csharp_indent_braces = false
    csharp_indent_block_contents = true
    # C# Unnecessary code rules
    csharp_style_unused_value_assignment_preference = discard_variable:suggestion
    csharp_style_unused_value_expression_statement_preference = discard_variable:suggestion
    dotnet_diagnostic.IDE0058.severity = suggestion
    dotnet_diagnostic.IDE0059.severity = suggestion

    # Expression-level preferences
    csharp_style_prefer_range_operator = true:warning
    csharp_style_prefer_index_operator = true:warning
    csharp_style_pattern_local_over_anonymous_function = true:warning
    csharp_style_inlined_variable_declaration = true:warning
    csharp_style_implicit_object_creation_when_type_is_apparent = true:warning
    csharp_style_deconstructed_variable_declaration = true:warning
    csharp_prefer_simple_default_expression = true:warning

    #Space preferences
    # 'using' directive preferences
    csharp_using_directive_placement = outside_namespace:warning

    # Expression-Bodied members
    csharp_style_expression_bodied_accessors = true:warning
    csharp_style_expression_bodied_constructors = true:warning
    csharp_style_expression_bodied_indexers = true:warning
    csharp_style_expression_bodied_lambdas = true:warning
    csharp_style_expression_bodied_local_functions = true:warning
    csharp_style_expression_bodied_methods = true:warning
    csharp_style_expression_bodied_operators = true:warning
    csharp_style_expression_bodied_properties = true:warning

    # Pattern matching preferences
    csharp_style_pattern_matching_over_as_with_null_check = true:warning
    csharp_style_pattern_matching_over_is_with_cast_check = true:warning
    csharp_style_prefer_not_pattern = true:warning
    csharp_style_prefer_pattern_matching = true:warning
    csharp_style_prefer_switch_expression = true:warning

    # "Null" checking preferences
    csharp_style_conditional_delegate_call = true:warning
    csharp_style_throw_expression = true:warning

    # Spacing options
    # https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/formatting-rules#spacing-options
    csharp_space_between_square_brackets = false
    csharp_space_between_parentheses = false
    csharp_space_between_method_declaration_parameter_list_parentheses = false
    @@ -1669,74 +1863,48 @@ csharp_space_after_comma = true
    csharp_space_after_colon_in_inheritance_clause = true
    csharp_space_after_cast = false

    #Wrapping preferences
    # Wrap options
    # https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/formatting-rules#wrap-options
    csharp_preserve_single_line_statements = true
    csharp_preserve_single_line_blocks = true

    #New line preferences
    csharp_new_line_between_query_expression_clauses = true
    csharp_new_line_before_open_brace = all
    csharp_new_line_before_members_in_object_initializers = true
    csharp_new_line_before_members_in_anonymous_types = true
    csharp_new_line_before_finally = true
    csharp_new_line_before_else = true
    csharp_new_line_before_catch = true

    #Indentation preferences
    csharp_indent_switch_labels = true
    csharp_indent_labels = one_less_than_current
    csharp_indent_case_contents_when_block = true
    csharp_indent_case_contents = true
    csharp_indent_braces = false
    csharp_indent_block_contents = true
    csharp_indent_braces = false
    csharp_indent_case_contents = true
    csharp_indent_case_contents_when_block = true
    csharp_indent_labels = one_less_than_current
    csharp_indent_switch_labels = true

    #Space preferences
    csharp_space_after_cast = false
    csharp_space_after_colon_in_inheritance_clause = true
    csharp_space_after_comma = true
    csharp_space_after_dot = false
    csharp_space_after_keywords_in_control_flow_statements = true
    csharp_space_after_semicolon_in_for_statement = true
    csharp_space_around_binary_operators = before_and_after
    csharp_space_around_declaration_statements = false
    csharp_space_before_colon_in_inheritance_clause = true
    csharp_space_before_comma = false
    csharp_space_before_dot = false
    csharp_space_before_open_square_brackets = false
    csharp_space_before_semicolon_in_for_statement = false
    csharp_space_between_empty_square_brackets = false
    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_name_and_open_parenthesis = false
    csharp_space_between_method_declaration_parameter_list_parentheses = false
    csharp_space_between_parentheses = expressions
    csharp_space_between_square_brackets = false
    # Namespace options
    # https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/formatting-rules#namespace-options
    csharp_style_namespace_declarations = file_scoped:warning

    #Wrapping preferences
    csharp_style_prefer_tuple_swap = true:suggestion
    csharp_style_prefer_top_level_statements = true:silent
    csharp_style_prefer_parameter_null_checking = true:suggestion
    csharp_style_prefer_null_check_over_type_check = true:suggestion
    csharp_style_prefer_method_group_conversion = true:silent
    csharp_style_prefer_local_over_anonymous_function = true:suggestion
    csharp_style_prefer_extended_property_pattern = true:suggestion
    csharp_style_namespace_declarations = file_scoped:silent
    csharp_style_allow_embedded_statements_on_same_line_experimental = true:silent
    csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true:silent
    csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true:silent
    csharp_preserve_single_line_statements = true
    csharp_preserve_single_line_blocks = true
    csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true:silent
    csharp_style_allow_embedded_statements_on_same_line_experimental = true:silent
    csharp_style_prefer_extended_property_pattern = true:suggestion
    csharp_style_prefer_local_over_anonymous_function = true:suggestion
    csharp_style_prefer_method_group_conversion = true:silent
    csharp_style_prefer_null_check_over_type_check = true:warning
    csharp_style_prefer_parameter_null_checking = true:suggestion
    csharp_style_prefer_top_level_statements = true:silent
    csharp_style_prefer_tuple_swap = true:suggestion

    # RCS1049: Simplify boolean comparison.
    dotnet_diagnostic.RCS1049.severity = silent

    #[src/{VisualStudio}/**/*.{cs,vb}]
    # [src/{VisualStudio}/**/*.{cs,vb}]
    # CA1822: Make member static
    # There is a risk of accidentally breaking an internal API that partners rely on though IVT.
    dotnet_code_quality.CA1822.api_surface = private

    [*.g.cs]
    dotnet_diagnostic.CS1591.severity = none

    #dotNetDave's Editor Config - dotNetTips.com
    #dotNetDave's books available at: http://bit.ly/RockYourCodeBooks
    #Rockin' the Code World with dotNetDave (weekly live show): https://www.c-sharpcorner.com/live/rockin-the-code-world-with-dotnetdave

    # dotNetDave's Editor Config - dotNetTips.com
    # Updates to this file are posted quarterly at: https://bit.ly/EditorConfig5
    # dotNetDave's books available at: http://bit.ly/RockYourCodeBooks
    # Rockin' the Code World with dotNetDave (weekly live show): https://www.c-sharpcorner.com/live/rockin-the-code-world-with-dotnetdave
  6. @RealDotNetDave RealDotNetDave revised this gist Aug 7, 2022. 1 changed file with 123 additions and 119 deletions.
    242 changes: 123 additions & 119 deletions .editorConfig
    Original file line number Diff line number Diff line change
    @@ -66,90 +66,90 @@ dotnet_naming_symbols.constants.required_modifiers = co
    dotnet_naming_style.constant_style.capitalization = pascal_case

    #Locals and parameters are camelCase
    dotnet_naming_rule.locals_should_be_camel_case.severity = warning
    dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style
    dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters
    dotnet_naming_style.camel_case_style.capitalization = camel_case
    dotnet_naming_style.static_field_style.required_prefix = s_
    dotnet_naming_symbols.locals_and_parameters.applicable_kinds = parameter, local
    dotnet_naming_symbols.static_fields.required_modifiers = static
    dotnet_naming_symbols.locals_and_parameters.applicable_kinds = parameter, local
    dotnet_naming_style.static_field_style.required_prefix = s_
    dotnet_naming_style.camel_case_style.capitalization = camel_case
    dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters
    dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style
    dotnet_naming_rule.locals_should_be_camel_case.severity = warning

    #Type Parameters
    dotnet_naming_style.type_parameter_style.capitalization = pascal_case
    dotnet_naming_style.type_parameter_style.required_prefix = T
    dotnet_naming_style.type_parameter_style.capitalization = pascal_case

    dotnet_naming_rule.type_parameter_naming.symbols = type_parameter_symbol
    dotnet_naming_rule.type_parameter_naming.style = type_parameter_style
    dotnet_naming_rule.type_parameter_naming.severity = warning
    dotnet_naming_symbols.type_parameter_symbol.applicable_kinds = type_parameter
    dotnet_naming_rule.type_parameter_naming.style = type_parameter_style
    dotnet_naming_rule.type_parameter_naming.symbols = type_parameter_symbol
    dotnet_naming_symbols.type_parameter_symbol.applicable_accessibilities = *
    dotnet_naming_symbols.type_parameter_symbol.applicable_kinds = type_parameter

    #Instance fields are camelCase and start with _
    dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion
    dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style
    dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
    dotnet_naming_rule.instance_fields_should_be_camel_case.severity = suggestion
    dotnet_naming_rule.instance_fields_should_be_camel_case.style = camel_case_underscore_style
    dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields
    dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
    dotnet_naming_style.camel_case_underscore_style.required_prefix = _
    dotnet_naming_style.instance_field_style.capitalization = camel_case
    dotnet_naming_style.instance_field_style.required_prefix = _
    dotnet_naming_symbols.instance_fields.applicable_kinds = field
    dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal
    dotnet_naming_symbols.private_internal_fields.applicable_kinds = field
    dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal
    dotnet_naming_symbols.instance_fields.applicable_kinds = field
    dotnet_naming_style.instance_field_style.required_prefix = _
    dotnet_naming_style.instance_field_style.capitalization = camel_case
    dotnet_naming_style.camel_case_underscore_style.required_prefix = _
    dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
    dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields
    dotnet_naming_rule.instance_fields_should_be_camel_case.style = camel_case_underscore_style
    dotnet_naming_rule.instance_fields_should_be_camel_case.severity = suggestion
    dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
    dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style
    dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion

    #Local functions are PascalCase
    dotnet_diagnostic.CS8618.severity = silent
    dotnet_naming_rule.local_functions_should_be_pascal_case.severity = warning
    dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = all_members
    dotnet_naming_rule.local_functions_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_symbols.local_functions.applicable_kinds = local_function
    dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = all_members
    dotnet_naming_style.local_function_style.capitalization = pascal_case
    dotnet_diagnostic.CS8618.severity = silent
    dotnet_naming_symbols.local_functions.applicable_kinds = local_function

    #this. and Me. preferences
    dotnet_style_qualification_for_event = true:suggestion
    dotnet_style_qualification_for_field = true : suggestion
    dotnet_style_qualification_for_method = true:suggestion
    dotnet_style_qualification_for_property = true:suggestion
    dotnet_style_qualification_for_method = true:suggestion
    dotnet_style_qualification_for_field = true : suggestion
    dotnet_style_qualification_for_event = true:suggestion

    #Parentheses preferences
    dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:suggestion
    dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:suggestion
    dotnet_style_parentheses_in_other_operators = never_if_unnecessary:suggestion
    dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:suggestion
    dotnet_style_parentheses_in_other_operators = never_if_unnecessary:suggestion
    dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:suggestion
    dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:suggestion

    # Naming styles
    dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning
    dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
    dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
    dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
    dotnet_naming_rule.types_should_be_pascal_case.severity = warning
    dotnet_naming_rule.types_should_be_pascal_case.symbols = types
    dotnet_naming_rule.types_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_rule.types_should_be_pascal_case.symbols = types

    #By default, name items with PascalCase
    dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning
    dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
    dotnet_naming_rule.non_field_members_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_symbols.all_members.applicable_kinds = *
    dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
    dotnet_naming_style.pascal_case_style.capitalization = pascal_case
    dotnet_naming_symbols.all_members.applicable_kinds = *

    #Symbol specifications
    dotnet_naming_symbols.interface.required_modifiers =
    dotnet_naming_symbols.types.required_modifiers =
    dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
    dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
    dotnet_naming_symbols.non_field_members.required_modifiers = *
    dotnet_naming_symbols.types.required_modifiers =

    #Naming styles
    dotnet_naming_style.pascal_case.required_prefix =
    dotnet_naming_style.pascal_case.required_suffix =
    dotnet_naming_style.pascal_case.word_separator =
    dotnet_naming_style.pascal_case.capitalization = pascal_case
    dotnet_naming_style.begins_with_i.capitalization = pascal_case
    dotnet_naming_style.begins_with_i.required_prefix = I
    dotnet_naming_style.begins_with_i.required_suffix =
    dotnet_naming_style.begins_with_i.word_separator =
    dotnet_naming_style.begins_with_i.capitalization = pascal_case
    dotnet_naming_style.pascal_case.capitalization = pascal_case
    dotnet_naming_style.pascal_case.required_prefix =
    dotnet_naming_style.pascal_case.required_suffix =
    dotnet_naming_style.pascal_case.word_separator =

    #### Diagnostic ####

    @@ -1579,116 +1579,116 @@ dotnet_style_allow_multiple_blank_lines_experimental = false:silent
    [*.cs]

    #Prefer "var" everywhere (Implicit and explicit types)
    csharp_style_var_elsewhere = false:suggestion
    csharp_style_var_for_built_in_types = true:suggestion
    csharp_style_var_when_type_is_apparent = true:suggestion
    csharp_style_var_for_built_in_types = true:suggestion
    csharp_style_var_elsewhere = false:suggestion

    #Expression-Bodied members
    csharp_style_expression_bodied_accessors = true:none
    csharp_style_expression_bodied_constructors = false:silent
    csharp_style_expression_bodied_indexers = true:none
    csharp_style_expression_bodied_lambdas = true:silent
    csharp_style_expression_bodied_local_functions = false:silent
    csharp_style_expression_bodied_methods = false:silent
    csharp_style_expression_bodied_operators = false:silent
    csharp_style_expression_bodied_properties = true:none
    csharp_style_expression_bodied_operators = false:silent
    csharp_style_expression_bodied_methods = false:silent
    csharp_style_expression_bodied_local_functions = false:silent
    csharp_style_expression_bodied_lambdas = true:silent
    csharp_style_expression_bodied_indexers = true:none
    csharp_style_expression_bodied_constructors = false:silent
    csharp_style_expression_bodied_accessors = true:none

    #Pattern matching preferences
    csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
    csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
    csharp_style_prefer_not_pattern = true:suggestion
    csharp_style_prefer_pattern_matching = true:silent
    csharp_style_prefer_switch_expression = true:suggestion
    csharp_style_prefer_pattern_matching = true:silent
    csharp_style_prefer_not_pattern = true:suggestion
    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_conditional_delegate_call = true:warning

    #Modifier preferences
    csharp_prefer_static_local_function = true:suggestion
    csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion
    csharp_prefer_static_local_function = true:suggestion

    #Code-block preferences
    csharp_prefer_braces = true:suggestion
    csharp_prefer_simple_using_statement = false:silent
    csharp_prefer_braces = true:suggestion

    #Expression-level preferences
    csharp_prefer_simple_default_expression = true:warning
    csharp_style_deconstructed_variable_declaration = true:warning
    csharp_style_implicit_object_creation_when_type_is_apparent = true:suggestion
    csharp_style_inlined_variable_declaration = true:suggestion
    csharp_style_pattern_local_over_anonymous_function = true:warning
    csharp_style_prefer_index_operator = true:suggestion
    csharp_style_prefer_range_operator = true:suggestion
    csharp_style_throw_expression = true:suggestion
    csharp_style_unused_value_assignment_preference = discard_variable:suggestion
    csharp_style_unused_value_expression_statement_preference = discard_variable:silent
    csharp_style_unused_value_assignment_preference = discard_variable:suggestion
    csharp_style_throw_expression = true:suggestion
    csharp_style_prefer_range_operator = true:suggestion
    csharp_style_prefer_index_operator = true:suggestion
    csharp_style_pattern_local_over_anonymous_function = true:warning
    csharp_style_inlined_variable_declaration = true:suggestion
    csharp_style_implicit_object_creation_when_type_is_apparent = true:suggestion
    csharp_style_deconstructed_variable_declaration = true:warning
    csharp_prefer_simple_default_expression = true:warning

    #'using' directive preferences
    csharp_using_directive_placement = outside_namespace:warning

    #### C# Formatting Rules ####

    #New line preferences
    csharp_new_line_before_catch = true
    csharp_new_line_before_else = true
    csharp_new_line_before_finally = true
    csharp_new_line_before_catch = true
    csharp_new_line_before_else = true
    csharp_new_line_before_finally = true
    csharp_new_line_before_members_in_anonymous_types = true
    csharp_new_line_before_members_in_object_initializers = true
    csharp_new_line_before_open_brace = all
    csharp_new_line_between_query_expression_clauses = true

    #Indentation preferences
    csharp_indent_block_contents = true
    csharp_indent_braces = false
    csharp_indent_case_contents = true
    csharp_indent_case_contents_when_block = true
    csharp_indent_labels = one_less_than_current
    csharp_indent_switch_labels = true
    csharp_indent_labels = one_less_than_current
    csharp_indent_case_contents_when_block = true
    csharp_indent_case_contents = true
    csharp_indent_braces = false
    csharp_indent_block_contents = true

    #Space preferences
    csharp_space_after_cast = false
    csharp_space_after_colon_in_inheritance_clause = true
    csharp_space_after_comma = true
    csharp_space_after_dot = false
    csharp_space_after_keywords_in_control_flow_statements = true
    csharp_space_after_semicolon_in_for_statement = true
    csharp_space_around_binary_operators = before_and_after
    csharp_space_around_declaration_statements = false
    csharp_space_before_colon_in_inheritance_clause = true
    csharp_space_before_comma = false
    csharp_space_before_dot = false
    csharp_space_before_open_square_brackets = false
    csharp_space_before_semicolon_in_for_statement = false
    csharp_space_between_empty_square_brackets = false
    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_name_and_open_parenthesis = false
    csharp_space_between_method_declaration_parameter_list_parentheses = false
    csharp_space_between_parentheses = false
    csharp_space_between_square_brackets = false
    csharp_space_between_parentheses = false
    csharp_space_between_method_declaration_parameter_list_parentheses = false
    csharp_space_between_method_declaration_name_and_open_parenthesis = false
    csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
    csharp_space_between_method_call_parameter_list_parentheses = false
    csharp_space_between_method_call_name_and_opening_parenthesis = false
    csharp_space_between_method_call_empty_parameter_list_parentheses = false
    csharp_space_between_empty_square_brackets = false
    csharp_space_before_semicolon_in_for_statement = false
    csharp_space_before_open_square_brackets = false
    csharp_space_before_dot = false
    csharp_space_before_comma = false
    csharp_space_before_colon_in_inheritance_clause = true
    csharp_space_around_declaration_statements = false
    csharp_space_around_binary_operators = before_and_after
    csharp_space_after_semicolon_in_for_statement = true
    csharp_space_after_keywords_in_control_flow_statements = true
    csharp_space_after_dot = false
    csharp_space_after_comma = true
    csharp_space_after_colon_in_inheritance_clause = true
    csharp_space_after_cast = false

    #Wrapping preferences
    csharp_preserve_single_line_blocks = true
    csharp_preserve_single_line_statements = true
    csharp_preserve_single_line_blocks = true

    #New line preferences
    csharp_new_line_before_catch = true
    csharp_new_line_before_else = true
    csharp_new_line_before_finally = true
    csharp_new_line_before_members_in_anonymous_types = true
    csharp_new_line_before_members_in_object_initializers = true
    csharp_new_line_before_open_brace = all
    csharp_new_line_between_query_expression_clauses = true
    csharp_new_line_before_open_brace = all
    csharp_new_line_before_members_in_object_initializers = true
    csharp_new_line_before_members_in_anonymous_types = true
    csharp_new_line_before_finally = true
    csharp_new_line_before_else = true
    csharp_new_line_before_catch = true

    #Indentation preferences
    csharp_indent_block_contents = true
    csharp_indent_braces = false
    csharp_indent_case_contents = true
    csharp_indent_case_contents_when_block = true
    csharp_indent_labels = one_less_than_current
    csharp_indent_switch_labels = true
    csharp_indent_labels = one_less_than_current
    csharp_indent_case_contents_when_block = true
    csharp_indent_case_contents = true
    csharp_indent_braces = false
    csharp_indent_block_contents = true

    #Space preferences
    csharp_space_after_cast = false
    @@ -1715,24 +1715,28 @@ csharp_space_between_parentheses = expre
    csharp_space_between_square_brackets = false

    #Wrapping preferences
    csharp_preserve_single_line_blocks = true
    csharp_preserve_single_line_statements = true
    csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true:silent
    csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true:silent
    csharp_style_allow_embedded_statements_on_same_line_experimental = true:silent
    csharp_style_namespace_declarations = file_scoped:silent
    csharp_style_prefer_extended_property_pattern = true:suggestion
    csharp_style_prefer_local_over_anonymous_function = true:suggestion
    csharp_style_prefer_null_check_over_type_check = true:suggestion
    csharp_style_prefer_tuple_swap = true:suggestion
    csharp_style_prefer_method_group_conversion = true:silent
    csharp_style_prefer_parameter_null_checking = true:suggestion
    csharp_style_prefer_top_level_statements = true:silent
    csharp_style_prefer_parameter_null_checking = true:suggestion
    csharp_style_prefer_null_check_over_type_check = true:suggestion
    csharp_style_prefer_method_group_conversion = true:silent
    csharp_style_prefer_local_over_anonymous_function = true:suggestion
    csharp_style_prefer_extended_property_pattern = true:suggestion
    csharp_style_namespace_declarations = file_scoped:silent
    csharp_style_allow_embedded_statements_on_same_line_experimental = true:silent
    csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true:silent
    csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true:silent
    csharp_preserve_single_line_statements = true
    csharp_preserve_single_line_blocks = true

    #[src/{VisualStudio}/**/*.{cs,vb}]
    # CA1822: Make member static
    # There is a risk of accidentally breaking an internal API that partners rely on though IVT.
    dotnet_code_quality.CA1822.api_surface = private

    [*.g.cs]
    dotnet_diagnostic.CS1591.severity = none
    dotnet_diagnostic.CS1591.severity = none

    #dotNetDave's Editor Config - dotNetTips.com
    #dotNetDave's books available at: http://bit.ly/RockYourCodeBooks
    #Rockin' the Code World with dotNetDave (weekly live show): https://www.c-sharpcorner.com/live/rockin-the-code-world-with-dotnetdave
  7. @RealDotNetDave RealDotNetDave revised this gist Aug 7, 2022. 1 changed file with 669 additions and 429 deletions.
    1,098 changes: 669 additions & 429 deletions .editorConfig
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,5 @@
    # Suppress: EC116
    #dotNetDave's Editor Config - dotNetTips.com
    #Suppress: EC116
    root = true

    [*]
    @@ -7,54 +8,54 @@ end_of_line = crlf
    indent_size = 4
    indent_style = tab
    insert_final_newline = true
    trim_trailing_whitespace = trueSimplify name (IDE0001)

    # Code files
    #Code files
    [*.{cs,csx,vb,vbx}]
    charset = utf-8-bom

    # Xml project files
    #Xml project files
    [*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
    indent_size = 4

    # Xml config files
    #Xml config files
    [*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct,xml,stylecop}]
    indent_size = 2

    # JSON files
    #JSON files
    [*.{json,json5}]
    indent_size = 2

    # YAML Files
    #YAML Files
    [*.{yml,yaml}]
    indent_size = 2

    # Shell scripts
    #Shell scripts
    [*.sh]
    end_of_line = lf

    [*.{cmd,bat}]
    end_of_line = crlf

    # Web Files
    #Web Files
    [*.{htm,html,js,ts,css,scss,less}]
    indent_size = 2
    insert_final_newline = true

    [*.{cs,vb}]
    dotnet_diagnostic.CA1014.severity = none

    # Non-private static fields are PascalCase
    #Non-private static fields are PascalCase
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.severity = warning
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.symbols = non_private_static_fields
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.style = non_private_static_field_style

    dotnet_naming_symbols.non_private_static_fields.applicable_kinds = field
    dotnet_naming_symbols.non_private_static_fields.applicable_accessibilities = public, protected, internal, protected internal
    dotnet_naming_symbols.non_private_static_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected
    dotnet_naming_symbols.non_private_static_fields.required_modifiers = static

    dotnet_naming_style.non_private_static_field_style.capitalization = pascal_case

    # Constants are PascalCase
    #Constants are PascalCase
    dotnet_naming_rule.constants_should_be_pascal_case.severity = warning
    dotnet_naming_rule.constants_should_be_pascal_case.symbols = constants
    dotnet_naming_rule.constants_should_be_pascal_case.style = non_private_static_field_style
    @@ -64,16 +65,16 @@ dotnet_naming_symbols.constants.required_modifiers = co

    dotnet_naming_style.constant_style.capitalization = pascal_case

    # Locals and parameters are camelCase
    #Locals and parameters are camelCase
    dotnet_naming_rule.locals_should_be_camel_case.severity = warning
    dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters
    dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style
    dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters
    dotnet_naming_style.camel_case_style.capitalization = camel_case
    dotnet_naming_style.static_field_style.required_prefix = s_
    dotnet_naming_symbols.locals_and_parameters.applicable_kinds = parameter, local
    dotnet_naming_symbols.static_fields.required_modifiers = static
    dotnet_naming_style.camel_case_style.capitalization = camel_case
    dotnet_naming_style.static_field_style.required_prefix = s_

    # Type Parameters
    #Type Parameters
    dotnet_naming_style.type_parameter_style.capitalization = pascal_case
    dotnet_naming_style.type_parameter_style.required_prefix = T

    @@ -83,60 +84,64 @@ dotnet_naming_rule.type_parameter_naming.severity = warning
    dotnet_naming_symbols.type_parameter_symbol.applicable_kinds = type_parameter
    dotnet_naming_symbols.type_parameter_symbol.applicable_accessibilities = *

    # Instance fields are camelCase and start with _
    #Instance fields are camelCase and start with _
    dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion
    dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style
    dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
    dotnet_naming_rule.instance_fields_should_be_camel_case.severity = suggestion
    dotnet_naming_rule.instance_fields_should_be_camel_case.style = camel_case_underscore_style
    dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields
    dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
    dotnet_naming_style.camel_case_underscore_style.required_prefix = _
    dotnet_naming_style.instance_field_style.capitalization = camel_case
    dotnet_naming_style.instance_field_style.required_prefix = _
    dotnet_naming_symbols.instance_fields.applicable_kinds = field
    dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal
    dotnet_naming_symbols.private_internal_fields.applicable_kinds = field

    # Local functions are PascalCase
    #Local functions are PascalCase
    dotnet_naming_rule.local_functions_should_be_pascal_case.severity = warning
    dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = local_functions
    dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = all_members
    dotnet_naming_rule.local_functions_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_symbols.local_functions.applicable_kinds = local_function
    dotnet_naming_style.local_function_style.capitalization = pascal_case
    dotnet_diagnostic.CS8618.severity = silent

    # this. and Me. preferences
    #this. and Me. preferences
    dotnet_style_qualification_for_event = true:suggestion
    dotnet_style_qualification_for_field = true : suggestion
    dotnet_style_qualification_for_method = true:suggestion
    dotnet_style_qualification_for_property = true:suggestion

    # Parentheses preferences
    #Parentheses preferences
    dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:suggestion
    dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:suggestion
    dotnet_style_parentheses_in_other_operators = never_if_unnecessary:suggestion
    dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:suggestion

    #### Naming styles ####
    # Naming styles
    dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning
    dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
    dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
    dotnet_naming_rule.types_should_be_pascal_case.severity = warning
    dotnet_naming_rule.types_should_be_pascal_case.symbols = types
    dotnet_naming_rule.types_should_be_pascal_case.style = non_private_static_field_style

    # By default, name items with PascalCase
    #By default, name items with PascalCase
    dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning
    dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
    dotnet_naming_rule.non_field_members_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_symbols.all_members.applicable_kinds = *
    dotnet_naming_style.pascal_case_style.capitalization = pascal_case

    # Symbol specifications

    #Symbol specifications
    dotnet_naming_symbols.interface.required_modifiers =
    dotnet_naming_symbols.types.required_modifiers =
    dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
    dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.non_field_members.required_modifiers = *

    # Naming styles

    #Naming styles
    dotnet_naming_style.pascal_case.required_prefix =
    dotnet_naming_style.pascal_case.required_suffix =
    dotnet_naming_style.pascal_case.word_separator =
    @@ -146,100 +151,200 @@ dotnet_naming_style.begins_with_i.required_suffix =
    dotnet_naming_style.begins_with_i.word_separator =
    dotnet_naming_style.begins_with_i.capitalization = pascal_case


    #### Diagnostic ####

    # VSTHRD002: Avoid problematic synchronous waits
    #VSTHRD002: Avoid problematic synchronous waits
    dotnet_diagnostic.VSTHRD002.severity= error

    # CA1401: P/Invokes should not be visible
    #CA1401: P/Invokes should not be visible
    dotnet_diagnostic.CA1401.severity=error

    # CA1416: Validate platform compatibility
    #CA1416: Validate platform compatibility
    dotnet_diagnostic.CA1416.severity=suggestion

    # CA1417: Do not use OutAttribute on string parameters for P/Invokes
    #CA1417: Do not use OutAttribute on string parameters for P/Invokes
    dotnet_diagnostic.CA1417.severity=suggestion

    #### Maintainability ####

    # CA1501: Avoid excessive inheritance
    #CA1501: Avoid excessive inheritance
    dotnet_diagnostic.CA1501.severity=warning

    # CA1502: Avoid excessive complexity
    #CA1502: Avoid excessive complexity
    dotnet_diagnostic.CA1502.severity=warning

    # CA1505: Avoid unmaintainable code
    #CA1505: Avoid unmaintainable code
    dotnet_diagnostic.CA1505.severity=warning

    # CA1506: Avoid excessive class coupling
    #CA1506: Avoid excessive class coupling
    dotnet_diagnostic.CA1506.severity=warning

    # CA1507: Use nameof in place of string
    #CA1507: Use nameof in place of string
    dotnet_diagnostic.CA1507.severity=suggestion

    # CA1508: Avoid dead conditional code
    #CA1508: Avoid dead conditional code
    dotnet_diagnostic.CA1508.severity=suggestion

    # CA1509: Invalid entry in code metrics configuration file
    #CA1509: Invalid entry in code metrics configuration file
    dotnet_diagnostic.CA1509.severity=suggestion

    #SA1119 StatementMustNotUseUnnecessaryParenthesis
    dotnet_diagnostic.SA1119.severity=suggestion

    #SA1400 AccessModifierMustBeDeclared
    dotnet_diagnostic.SA1400.severity=warning

    #SA1401 FieldsMustBePrivate
    dotnet_diagnostic.SA1401.severity=warning

    #SA1403 FileMayOnlyContainASingleNamespace
    dotnet_diagnostic.SA1403.severity=warning

    #SA1405 DebugAssertMustProvideMessageText
    dotnet_diagnostic.SA1405.severity=warning

    #SA1406 DebugFailMustProvideMessageText
    dotnet_diagnostic.SA1406.severity=warning

    #SA1409 RemoveUnnecessaryCode
    dotnet_diagnostic.SA1409.severity=warning

    #IDISP001 Dispose created
    dotnet_diagnostic.IDISP001.severity = error

    #IDISP002 Dispose member
    dotnet_diagnostic.IDISP002.severity = error

    #IDISP003 Dispose previous before re-assigning
    dotnet_diagnostic.IDISP003.severity = error

    #IDISP004 Don't ignore created IDisposable
    dotnet_diagnostic.IDISP004.severity = error

    #IDISP005 Return type should indicate that the value should be disposed
    dotnet_diagnostic.IDISP005.severity = error

    #IDISP006 Implement IDisposable
    dotnet_diagnostic.IDISP006.severity = error

    #IDISP007 Don't dispose injected
    dotnet_diagnostic.IDISP007.severity = error

    #IDISP008 Don't assign member with injected and created disposables
    dotnet_diagnostic.IDISP008.severity = error

    #IDISP009 Add IDisposable interface
    dotnet_diagnostic.IDISP009.severity = error

    #IDISP010 Call base.Dispose(disposing)
    dotnet_diagnostic.IDISP010.severity = error

    #IDISP011 Don't return disposed instance
    dotnet_diagnostic.IDISP011.severity = warning

    #IDISP012 Property should not return created disposable
    dotnet_diagnostic.IDISP012.severity = error

    #IDISP013 Await in using
    dotnet_diagnostic.IDISP013.severity = error

    #IDISP014 Use a single instance of HttpClient
    dotnet_diagnostic.IDISP014.severity = warning

    #IDISP015 Member should not return created and cached instance
    dotnet_diagnostic.IDISP015.severity = error

    #IDISP016 Don't use disposed instance
    dotnet_diagnostic.IDISP016.severity = error

    #IDISP017 Prefer using
    dotnet_diagnostic.IDISP017.severity = error

    #IDISP018 Call SuppressFinalize
    dotnet_diagnostic.IDISP018.severity = error

    #IDISP019 Call SuppressFinalize
    dotnet_diagnostic.IDISP019.severity = error

    #IDISP020 Call SuppressFinalize(this)
    dotnet_diagnostic.IDISP020.severity = error

    #IDISP021 Call this.Dispose(true)
    dotnet_diagnostic.IDISP021.severity = error

    #IDISP022 Call this.Dispose(false)
    dotnet_diagnostic.IDISP022.severity = error

    #IDISP023 Don't use reference types in finalizer context
    dotnet_diagnostic.IDISP023.severity = error

    #IDISP024 Don't call GC.SuppressFinalize(this) when the type is sealed and has no finalizer
    dotnet_diagnostic.IDISP024.severity = error

    #IDISP025 Class with no virtual dispose method should be sealed
    dotnet_diagnostic.IDISP025.severity = error

    dotnet_diagnostic.IDE0063.severity = silent

    dotnet_diagnostic.IDE0130.severity = warning

    #### Naming ####

    # CA1700: Do not name enum values 'Reserved'
    #CA1700: Do not name enum values 'Reserved'
    dotnet_diagnostic.CA1700.severity=warning

    # CA1707: Identifiers should not contain underscores
    dotnet_diagnostic.CA1707.severity=warning
    #CA1707: Identifiers should not contain underscores
    dotnet_diagnostic.CA1707.severity=suggestion

    # CA1708: Identifiers should differ by more than case
    #CA1708: Identifiers should differ by more than case
    dotnet_diagnostic.CA1708.severity=error

    # CA1710: Identifiers should have correct suffix
    #CA1710: Identifiers should have correct suffix
    dotnet_diagnostic.CA1710.severity=suggestion

    # CA1711: Identifiers should not have incorrect suffix
    dotnet_diagnostic.CA1711.severity=warning
    #CA1711: Identifiers should not have incorrect suffix
    dotnet_diagnostic.CA1711.severity=silent

    # CA1712: Do not prefix enum values with type name
    #CA1712: Do not prefix enum values with type name
    dotnet_diagnostic.CA1712.severity=warning

    # CA1713: Events should not have before or after prefix
    #CA1713: Events should not have before or after prefix
    dotnet_diagnostic.CA1713.severity=warning

    # CA1714: Flags enums should have plural names
    #CA1714: Flags enums should have plural names
    dotnet_diagnostic.CA1714.severity=error

    # CA1715: Identifiers should have correct prefix
    #CA1715: Identifiers should have correct prefix
    dotnet_diagnostic.CA1715.severity=error

    # CA1716: Identifiers should not match keywords
    #CA1716: Identifiers should not match keywords
    dotnet_diagnostic.CA1716.severity=warning

    # CA1717: Only FlagsAttribute enums should have plural names
    #CA1717: Only FlagsAttribute enums should have plural names
    dotnet_diagnostic.CA1717.severity=error

    # CA1720: Identifiers should not contain type names
    #CA1720: Identifiers should not contain type names
    dotnet_diagnostic.CA1720.severity=warning

    # CA1721: Property names should not match get methods
    #CA1721: Property names should not match get methods
    dotnet_diagnostic.CA1721.severity=warning

    # CA1724: Type names should not match namespaces
    #CA1724: Type names should not match namespaces
    dotnet_diagnostic.CA1724.severity=suggestion

    # CA1725: Parameter names should match base declaration
    #CA1725: Parameter names should match base declaration
    dotnet_diagnostic.CA1725.severity=warning

    #CA1727: Use PascalCase for named placeholders
    dotnet_diagnostic.CA1727.severity=warning

    #### Performance ####

    # CA1802: Use Literals Where Appropriate
    dotnet_diagnostic.CA1802.severity=suggestion

    # CA1805: Do not initialize unnecessarily.
    # CA1805: Do not initialize unnecessarily.
    dotnet_diagnostic.CA1805.severity=error

    # CA1806: Do not ignore method results
    # CA1806: Do not ignore method results
    dotnet_diagnostic.CA1806.severity=warning

    # CA1810: Initialize reference type static fields inline
    @@ -311,574 +416,644 @@ dotnet_diagnostic.CA1836.severity=warning
    #CA1837: Use Environment.ProcessId instead of Process.GetCurrentProcess().Id
    dotnet_diagnostic.CA1837.severity=warning

    # CA1838: Avoid StringBuilder parameters for P/Invokes
    #CA1838: Avoid StringBuilder parameters for P/Invokes
    dotnet_diagnostic.CA1838.severity=warning

    #CA1841: Prefer Dictionary Contains methods
    dotnet_diagnostic.CA1841.severity=warning

    # CA1844: Provide memory-based overrides of async methods when subclassing 'Stream'
    #CA1842: Do not use 'WhenAll' with a single task
    dotnet_diagnostic.CA1842.severity=warning

    #CA1843: Do not use 'WaitAll' with a single task
    dotnet_diagnostic.CA1843.severity=warning

    #CA1844: Provide memory-based overrides of async methods when subclassing 'Stream'
    dotnet_diagnostic.CA1844.severity=suggestion

    # CA1845: Use span-based 'string.Concat'
    #CA1845: Use span-based 'string.Concat'
    dotnet_diagnostic.CA1845.severity=suggestion

    # CA1846: Prefer AsSpan over Substring
    #CA1846: Prefer AsSpan over Substring
    dotnet_diagnostic.CA1846.severity=suggestion

    # CA1847: Use string.Contains(char) instead of string.Contains(string) with single character
    #CA1847: Use string.Contains(char) instead of string.Contains(string) with single character
    dotnet_diagnostic.CA1847.severity=suggestion

    # Add readonly modifier (IDE0044)
    #CA1848: Use the LoggerMessage delegates
    dotnet_diagnostic.CA1848.severity=warning

    #CA1849: Call async methods when in an async method
    dotnet_diagnostic.CA1849.severity=warning

    #CA1850: Prefer static HashData method over ComputeHash
    dotnet_diagnostic.CA1850.severity=warning

    #Add readonly modifier (IDE0044)
    dotnet_diagnostic.IDE0044.severity=warning

    # Use 'System.HashCode.Combine' (IDE0070)
    #Use 'System.HashCode.Combine' (IDE0070)
    dotnet_diagnostic.IDE0070.severity=warning

    # SYSLIB0012: Type or member is obsolete
    #SYSLIB0012: Type or member is obsolete
    dotnet_diagnostic.SYSLIB0012.severity = suggestion

    dotnet_diagnostic.RemoveUnnecessaryImportsFixable.severity=warning

    #### Reliability ####
    # CA2000: Dispose objects before losing scope

    #CA2000: Dispose objects before losing scope
    dotnet_diagnostic.CA2000.severity=error

    # CA2002: Do not lock on objects with weak identity
    #CA2002: Do not lock on objects with weak identity
    dotnet_diagnostic.CA2002.severity=error

    # CA2007: Do not directly await a Task
    #CA2007: Do not directly await a Task
    dotnet_diagnostic.CA2007.severity=error

    # CA2008: Do not create tasks without passing a TaskScheduler
    #CA2008: Do not create tasks without passing a TaskScheduler
    dotnet_diagnostic.CA2008.severity=suggestion

    # CA2009: Do not call ToImmutableCollection on an ImmutableCollection value
    #CA2009: Do not call ToImmutableCollection on an ImmutableCollection value
    dotnet_diagnostic.CA2009.severity=error

    # CA2011: Do not assign property within its setter
    #CA2011: Do not assign property within its setter
    dotnet_diagnostic.CA2011.severity=error

    # CA2012: Use ValueTasks correctly
    #CA2012: Use ValueTasks correctly
    dotnet_diagnostic.CA2012.severity=error

    # CA2013: Do not use ReferenceEquals with value types
    #CA2013: Do not use ReferenceEquals with value types
    dotnet_diagnostic.CA2013.severity=suggestion

    # CA2014: Do not use stackalloc in loops
    #CA2014: Do not use stackalloc in loops
    dotnet_diagnostic.CA2014.severity=error

    # CA2015: Do not define finalizers for types derived from MemoryManager<T>
    #CA2015: Do not define finalizers for types derived from MemoryManager<T>
    dotnet_diagnostic.CA2015.severity=error

    # CA2016: Forward the CancellationToken parameter to methods that take one
    #CA2016: Forward the CancellationToken parameter to methods that take one
    dotnet_diagnostic.CA2016.severity=suggestion

    #CA2017: Parameter count mismatch
    dotnet_diagnostic.CA2017.severity=error

    #CA2018: The count argument to Buffer.BlockCopy should specify the number of bytes to copy
    dotnet_diagnostic.CA2018.severity=warning

    #### Security Rules ####

    # CA2100: Review SQL queries for security vulnerabilities
    #CA2100: Review SQL queries for security vulnerabilities
    dotnet_diagnostic.CA2100.severity=error

    # CA2109: Review visible event handlers
    #CA2109: Review visible event handlers
    dotnet_diagnostic.CA2109.severity=warning

    # CA2119: Seal methods that satisfy private interfaces
    #CA2119: Seal methods that satisfy private interfaces
    dotnet_diagnostic.CA2119.severity=warning

    # CA2153: Avoid handling Corrupted State Exceptions
    #CA2153: Avoid handling Corrupted State Exceptions
    dotnet_diagnostic.CA2153.severity=warning

    # CA2300: Do not use insecure deserializer BinaryFormatter
    #CA2300: Do not use insecure deserializer BinaryFormatter
    dotnet_diagnostic.CA2300.severity=warning

    # CA2301: Do not call BinaryFormatter.Deserialize without first setting BinaryFormatter.Binder
    #CA2301: Do not call BinaryFormatter.Deserialize without first setting BinaryFormatter.Binder
    dotnet_diagnostic.CA2301.severity=warning

    # CA2302: Ensure BinaryFormatter.Binder is set before calling BinaryFormatter.Deserialize
    #CA2302: Ensure BinaryFormatter.Binder is set before calling BinaryFormatter.Deserialize
    dotnet_diagnostic.CA2302.severity=warning

    # CA2305: Do not use insecure deserializer LosFormatter
    #CA2305: Do not use insecure deserializer LosFormatter
    dotnet_diagnostic.CA2305.severity=warning

    # CA2310: Do not use insecure deserializer NetDataContractSerializer
    #CA2310: Do not use insecure deserializer NetDataContractSerializer
    dotnet_diagnostic.CA2310.severity=warning

    # CA2311: Do not deserialize without first setting NetDataContractSerializer.Binder
    #CA2311: Do not deserialize without first setting NetDataContractSerializer.Binder
    dotnet_diagnostic.CA2311.severity=warning

    # CA2312: Ensure NetDataContractSerializer.Binder is set before deserializing
    #CA2312: Ensure NetDataContractSerializer.Binder is set before deserializing
    dotnet_diagnostic.CA2312.severity=warning

    # CA2315: Do not use insecure deserializer ObjectStateFormatter
    #CA2315: Do not use insecure deserializer ObjectStateFormatter
    dotnet_diagnostic.CA2315.severity=warning

    # CA2321: Do not deserialize with JavaScriptSerializer using a SimpleTypeResolver
    #CA2321: Do not deserialize with JavaScriptSerializer using a SimpleTypeResolver
    dotnet_diagnostic.CA2321.severity=warning

    # CA2322: Ensure JavaScriptSerializer is not initialized with SimpleTypeResolver before deserializing
    #CA2322: Ensure JavaScriptSerializer is not initialized with SimpleTypeResolver before deserializing
    dotnet_diagnostic.CA2322.severity=warning

    # CA2326: Do not use TypeNameHandling values other than None
    #CA2326: Do not use TypeNameHandling values other than None
    dotnet_diagnostic.CA2326.severity=warning

    # CA2327: Do not use insecure JsonSerializerSettings
    #CA2327: Do not use insecure JsonSerializerSettings
    dotnet_diagnostic.CA2327.severity=warning

    # CA2328: Ensure that JsonSerializerSettings are secure
    #CA2328: Ensure that JsonSerializerSettings are secure
    dotnet_diagnostic.CA2328.severity=warning

    # CA2329: Do not deserialize with JsonSerializer using an insecure configuration
    #CA2329: Do not deserialize with JsonSerializer using an insecure configuration
    dotnet_diagnostic.CA2329.severity=warning

    # CA2330: Ensure that JsonSerializer has a secure configuration when deserializing
    #CA2330: Ensure that JsonSerializer has a secure configuration when deserializing
    dotnet_diagnostic.CA2330.severity=warning

    # CA2350: Ensure DataTable.ReadXml()'s input is trusted
    #CA2350: Ensure DataTable.ReadXml()'s input is trusted
    dotnet_diagnostic.CA2350.severity=warning

    # CA2351: Ensure DataSet.ReadXml()'s input is trusted
    #CA2351: Ensure DataSet.ReadXml()'s input is trusted
    dotnet_diagnostic.CA2351.severity=warning

    # CA2352: Unsafe DataSet or DataTable in serializable type can be vulnerable to remote code execution attacks
    #CA2352: Unsafe DataSet or DataTable in serializable type can be vulnerable to remote code execution attacks
    dotnet_diagnostic.CA2352.severity=warning

    # CA2353: Unsafe DataSet or DataTable in serializable type
    #CA2353: Unsafe DataSet or DataTable in serializable type
    dotnet_diagnostic.CA2353.severity=warning

    # CA2354: Unsafe DataSet or DataTable in deserialized object graph can be vulnerable to remote code execution attack
    #CA2354: Unsafe DataSet or DataTable in deserialized object graph can be vulnerable to remote code execution attack
    dotnet_diagnostic.CA2354.severity=warning

    # CA2355: Unsafe DataSet or DataTable in deserialized object graph
    #CA2355: Unsafe DataSet or DataTable in deserialized object graph
    dotnet_diagnostic.CA2355.severity=warning

    # CA2356: Unsafe DataSet or DataTable type in web deserialized object graph
    #CA2356: Unsafe DataSet or DataTable type in web deserialized object graph
    dotnet_diagnostic.CA2356.severity=warning

    # CA2361: Ensure autogenerated class containing DataSet.ReadXml() is not used with untrusted data
    #CA2361: Ensure autogenerated class containing DataSet.ReadXml() is not used with untrusted data
    dotnet_diagnostic.CA2361.severity=warning

    # CA2362: Unsafe DataSet or DataTable in autogenerated serializable type can be vulnerable to remote code execution attacks
    #CA2362: Unsafe DataSet or DataTable in autogenerated serializable type can be vulnerable to remote code execution attacks
    dotnet_diagnostic.CA2362.severity=warning

    # CA3001: Review code for SQL injection vulnerabilities
    #CA3001: Review code for SQL injection vulnerabilities
    dotnet_diagnostic.CA3001.severity=warning

    # CA3002: Review code for XSS vulnerabilities
    #CA3002: Review code for XSS vulnerabilities
    dotnet_diagnostic.CA3002.severity=warning

    # CA3003: Review code for file path injection vulnerabilities
    #CA3003: Review code for file path injection vulnerabilities
    dotnet_diagnostic.CA3003.severity=warning

    # CA3004: Review code for information disclosure vulnerabilities
    #CA3004: Review code for information disclosure vulnerabilities
    dotnet_diagnostic.CA3004.severity=warning

    # CA3005: Review code for LDAP injection vulnerabilities
    #CA3005: Review code for LDAP injection vulnerabilities
    dotnet_diagnostic.CA3005.severity = none

    # CA3006: Review code for process command injection vulnerabilities
    #CA3006: Review code for process command injection vulnerabilities
    dotnet_diagnostic.CA3006.severity = none

    # CA3007: Review code for open redirect vulnerabilities
    #CA3007: Review code for open redirect vulnerabilities
    dotnet_diagnostic.CA3007.severity = none

    # CA3008: Review code for XPath injection vulnerabilities
    #CA3008: Review code for XPath injection vulnerabilities
    dotnet_diagnostic.CA3008.severity = none

    # CA3009: Review code for XML injection vulnerabilities
    #CA3009: Review code for XML injection vulnerabilities
    dotnet_diagnostic.CA3009.severity = none

    # CA3010: Review code for XAML injection vulnerabilities
    #CA3010: Review code for XAML injection vulnerabilities
    dotnet_diagnostic.CA3010.severity = none

    # CA3011: Review code for DLL injection vulnerabilities
    #CA3011: Review code for DLL injection vulnerabilities
    dotnet_diagnostic.CA3011.severity = none

    # CA3012: Review code for regex injection vulnerabilities
    #CA3012: Review code for regex injection vulnerabilities
    dotnet_diagnostic.CA3012.severity = none

    # CA3061: Do Not Add Schema By URL
    #CA3061: Do Not Add Schema By URL
    dotnet_diagnostic.CA3061.severity = warning

    # CA3075: Insecure DTD processing in XML
    #CA3075: Insecure DTD processing in XML
    dotnet_diagnostic.CA3075.severity = warning

    # CA3076: Insecure XSLT script processing.
    #CA3076: Insecure XSLT script processing.
    dotnet_diagnostic.CA3076.severity = warning

    # CA3077: Insecure Processing in API Design, XmlDocument and XmlTextReader
    #CA3077: Insecure Processing in API Design, XmlDocument and XmlTextReader
    dotnet_diagnostic.CA3077.severity = warning

    # CA3147: Mark Verb Handlers With Validate Antiforgery Token
    #CA3147: Mark Verb Handlers With Validate Antiforgery Token
    dotnet_diagnostic.CA3147.severity = warning

    # CA5350: Do Not Use Weak Cryptographic Algorithms
    #CA5350: Do Not Use Weak Cryptographic Algorithms
    dotnet_diagnostic.CA5350.severity = warning

    # CA5351: Do Not Use Broken Cryptographic Algorithms
    #CA5351: Do Not Use Broken Cryptographic Algorithms
    dotnet_diagnostic.CA5351.severity = warning

    # CA5358: Do Not Use Unsafe Cipher Modes
    #CA5358: Do Not Use Unsafe Cipher Modes
    dotnet_diagnostic.CA5358.severity = none

    # CA5359: Do Not Disable Certificate Validation
    #CA5359: Do Not Disable Certificate Validation
    dotnet_diagnostic.CA5359.severity = warning

    # CA5360: Do Not Call Dangerous Methods In Deserialization
    #CA5360: Do Not Call Dangerous Methods In Deserialization
    dotnet_diagnostic.CA5360.severity = warning

    # CA5361: Do Not Disable SChannel Use of Strong Crypto
    #CA5361: Do Not Disable SChannel Use of Strong Crypto
    dotnet_diagnostic.CA5361.severity = warning

    # CA5362: Do Not Refer Self In Serializable Class
    #CA5362: Do Not Refer Self In Serializable Class
    dotnet_diagnostic.CA5362.severity = none

    # CA5363: Do Not Disable Request Validation
    #CA5363: Do Not Disable Request Validation
    dotnet_diagnostic.CA5363.severity = warning

    # CA5364: Do Not Use Deprecated Security Protocols
    #CA5364: Do Not Use Deprecated Security Protocols
    dotnet_diagnostic.CA5364.severity = warning

    # CA5365: Do Not Disable HTTP Header Checking
    #CA5365: Do Not Disable HTTP Header Checking
    dotnet_diagnostic.CA5365.severity = warning

    # CA5366: Use XmlReader For DataSet Read Xml
    #CA5366: Use XmlReader For DataSet Read Xml
    dotnet_diagnostic.CA5366.severity = warning

    # CA5367: Do Not Serialize Types With Pointer Fields
    #CA5367: Do Not Serialize Types With Pointer Fields
    dotnet_diagnostic.CA5367.severity = none

    # CA5368: Set ViewStateUserKey For Classes Derived From Page
    #CA5368: Set ViewStateUserKey For Classes Derived From Page
    dotnet_diagnostic.CA5368.severity = warning

    # CA5369: Use XmlReader For Deserialize
    #CA5369: Use XmlReader For Deserialize
    dotnet_diagnostic.CA5369.severity = warning

    # CA5370: Use XmlReader For Validating Reader
    #CA5370: Use XmlReader For Validating Reader
    dotnet_diagnostic.CA5370.severity = warning

    # CA5371: Use XmlReader For Schema Read
    #CA5371: Use XmlReader For Schema Read
    dotnet_diagnostic.CA5371.severity = warning

    # CA5372: Use XmlReader For XPathDocument
    #CA5372: Use XmlReader For XPathDocument
    dotnet_diagnostic.CA5372.severity = warning

    # CA5373: Do not use obsolete key derivation function
    #CA5373: Do not use obsolete key derivation function
    dotnet_diagnostic.CA5373.severity = warning

    # CA5374: Do Not Use XslTransform
    #CA5374: Do Not Use XslTransform
    dotnet_diagnostic.CA5374.severity = warning

    # CA5375: Do Not Use Account Shared Access Signature
    #CA5375: Do Not Use Account Shared Access Signature
    dotnet_diagnostic.CA5375.severity = none

    # CA5376: Use SharedAccessProtocol HttpsOnly
    #CA5376: Use SharedAccessProtocol HttpsOnly
    dotnet_diagnostic.CA5376.severity = warning

    # CA5377: Use Container Level Access Policy
    #CA5377: Use Container Level Access Policy
    dotnet_diagnostic.CA5377.severity = warning

    # CA5378: Do not disable ServicePointManagerSecurityProtocols
    #CA5378: Do not disable ServicePointManagerSecurityProtocols
    dotnet_diagnostic.CA5378.severity = warning

    # CA5379: Do Not Use Weak Key Derivation Function Algorithm
    #CA5379: Do Not Use Weak Key Derivation Function Algorithm
    dotnet_diagnostic.CA5379.severity = warning

    # CA5380: Do Not Add Certificates To Root Store
    #CA5380: Do Not Add Certificates To Root Store
    dotnet_diagnostic.CA5380.severity = warning

    # CA5381: Ensure Certificates Are Not Added To Root Store
    #CA5381: Ensure Certificates Are Not Added To Root Store
    dotnet_diagnostic.CA5381.severity = warning

    # CA5382: Use Secure Cookies In ASP.Net Core
    #CA5382: Use Secure Cookies In ASP.Net Core
    dotnet_diagnostic.CA5382.severity = warning

    # CA5383: Ensure Use Secure Cookies In ASP.Net Core
    #CA5383: Ensure Use Secure Cookies In ASP.Net Core
    dotnet_diagnostic.CA5383.severity = warning

    # CA5384: Do Not Use Digital Signature Algorithm (DSA)
    #CA5384: Do Not Use Digital Signature Algorithm (DSA)
    dotnet_diagnostic.CA5384.severity = warning

    # CA5385: Use Rivest–Shamir–Adleman (RSA) Algorithm With Sufficient Key Size
    #CA5385: Use Rivest–Shamir–Adleman (RSA) Algorithm With Sufficient Key Size
    dotnet_diagnostic.CA5385.severity = warning

    # CA5386: Avoid hardcoding SecurityProtocolType value
    #CA5386: Avoid hardcoding SecurityProtocolType value
    dotnet_diagnostic.CA5386.severity = warning

    # CA5387: Do Not Use Weak Key Derivation Function With Insufficient Iteration Count
    #CA5387: Do Not Use Weak Key Derivation Function With Insufficient Iteration Count
    dotnet_diagnostic.CA5387.severity = warning

    # CA5388: Ensure Sufficient Iteration Count When Using Weak Key Derivation Function
    #CA5388: Ensure Sufficient Iteration Count When Using Weak Key Derivation Function
    dotnet_diagnostic.CA5388.severity = warning

    # CA5389: Do Not Add Archive Item's Path To The Target File System Path
    #CA5389: Do Not Add Archive Item's Path To The Target File System Path
    dotnet_diagnostic.CA5389.severity = suggestion

    # CA5390: Do Not Hard Code Encryption Key
    #CA5390: Do Not Hard Code Encryption Key
    dotnet_diagnostic.CA5390.severity = error

    # CA5391: Use antiforgery tokens in ASP.NET Core MVC controllers
    #CA5391: Use antiforgery tokens in ASP.NET Core MVC controllers
    dotnet_diagnostic.CA5391.severity = warning

    # CA5392: Use DefaultDllImportSearchPaths attribute for P/Invokes
    #CA5392: Use DefaultDllImportSearchPaths attribute for P/Invokes
    dotnet_diagnostic.CA5392.severity = warning

    # CA5393: Do not use unsafe DllImportSearchPath value
    #CA5393: Do not use unsafe DllImportSearchPath value
    dotnet_diagnostic.CA5393.severity = warning

    # CA5394: Do not use insecure randomness
    #CA5394: Do not use insecure randomness
    dotnet_diagnostic.CA5394.severity = warning

    # CA5395: Miss HttpVerb attribute for action methods
    #CA5395: Miss HttpVerb attribute for action methods
    dotnet_diagnostic.CA5395.severity = warning

    # CA5396: Set HttpOnly to true for HttpCookie
    #CA5396: Set HttpOnly to true for HttpCookie
    dotnet_diagnostic.CA5396.severity = warning

    # CA5397: Do not use deprecated SslProtocols values
    #CA5397: Do not use deprecated SslProtocols values
    dotnet_diagnostic.CA5397.severity = warning

    # CA5398: Avoid hardcoded SslProtocols values
    #CA5398: Avoid hardcoded SslProtocols values
    dotnet_diagnostic.CA5398.severity = warning

    # CA5399: Definitely disable HttpClient certificate revocation list check
    #CA5399: Definitely disable HttpClient certificate revocation list check
    dotnet_diagnostic.CA5399.severity = warning

    # CA5400: Ensure HttpClient certificate revocation list check is not disabled
    #CA5400: Ensure HttpClient certificate revocation list check is not disabled
    dotnet_diagnostic.CA5400.severity = warning

    # CA5401: Do not use CreateEncryptor with non-default IV
    #CA5401: Do not use CreateEncryptor with non-default IV
    dotnet_diagnostic.CA5401.severity = suggestion

    # CA5402: Use CreateEncryptor with the default IV
    #CA5402: Use CreateEncryptor with the default IV
    dotnet_diagnostic.CA5402.severity = warning

    # CA5403: Do not hard-code certificate
    #CA5403: Do not hard-code certificate
    dotnet_diagnostic.CA5403.severity = error

    #CA5405: Do not always skip token validation in delegates
    dotnet_diagnostic.CA5404.severity = error

    #### Usage Rules ####
    # CA1801: Review unused parameters
    #CA1801: Review unused parameters
    dotnet_diagnostic.CA1801.severity = warning

    # CA1816: Call GC.SuppressFinalize correctly
    #CA1816: Call GC.SuppressFinalize correctly
    dotnet_diagnostic.CA1816.severity=error

    # CA2200: Rethrow to preserve stack details
    #CA2200: Rethrow to preserve stack details
    dotnet_diagnostic.CA2200.severity=error

    # CA2201: Do not raise reserved exception types
    #CA2201: Do not raise reserved exception types
    dotnet_diagnostic.CA2201.severity=error

    # CA2207: Initialize value type static fields inline
    #CA2207: Initialize value type static fields inline
    dotnet_diagnostic.CA2207.severity=warning

    # CA2208: Instantiate argument exceptions correctly
    #CA2208: Instantiate argument exceptions correctly
    dotnet_diagnostic.CA2208.severity=error

    # CA2211: Non-constant fields should not be visible
    #CA2211: Non-constant fields should not be visible
    dotnet_diagnostic.CA2211.severity=error

    # CA2213: Disposable fields should be disposed
    #CA2213: Disposable fields should be disposed
    dotnet_diagnostic.CA2213.severity=warning

    # CA2214: Do not call overridable methods in constructors
    #CA2214: Do not call overridable methods in constructors
    dotnet_diagnostic.CA2214.severity=warning

    # CA2215: Dispose methods should call base class dispose
    #CA2215: Dispose methods should call base class dispose
    dotnet_diagnostic.CA2215.severity=warning

    # CA2216: Disposable types should declare finalizer
    #CA2216: Disposable types should declare finalizer
    dotnet_diagnostic.CA2216.severity=warning

    # CA2217: Do not mark enums with FlagsAttribute
    #CA2217: Do not mark enums with FlagsAttribute
    dotnet_diagnostic.CA2216.severity=error

    # CA2218: Override GetHashCode on overriding Equals
    #CA2218: Override GetHashCode on overriding Equals
    dotnet_diagnostic.CA2218.severity=warning

    # CA2219: Do not raise exceptions in exception clauses
    #CA2219: Do not raise exceptions in exception clauses
    dotnet_diagnostic.CA2219.severity=error

    # CA2224: Override Equals on overloading operator equals
    #CA2224: Override Equals on overloading operator equals
    dotnet_diagnostic.CA2224.severity=warning

    # CA2225: Operator overloads have named alternates
    #CA2225: Operator overloads have named alternates
    dotnet_diagnostic.CA2225.severity=warning

    # CA2226: Operators should have symmetrical overloads
    #CA2226: Operators should have symmetrical overloads
    dotnet_diagnostic.CA2226.severity=warning

    # CA2227: Collection properties should be read only
    #CA2227: Collection properties should be read only
    dotnet_diagnostic.CA2227.severity=warning

    # CA2229: Implement serialization constructors
    #CA2229: Implement serialization constructors
    dotnet_diagnostic.CA2229.severity=warning

    # CA2231: Overload operator equals on overriding ValueType.Equals
    #CA2231: Overload operator equals on overriding ValueType.Equals
    dotnet_diagnostic.CA2231.severity=warning

    # CA2234: Pass System.Uri objects instead of strings
    #CA2234: Pass System.Uri objects instead of strings
    dotnet_diagnostic.CA2234.severity=warning

    # CA2235: Mark all non-serializable fields
    #CA2235: Mark all non-serializable fields
    dotnet_diagnostic.CA2235.severity=suggestion

    # CA2237: Mark ISerializable types with SerializableAttribute
    #CA2237: Mark ISerializable types with SerializableAttribute
    dotnet_diagnostic.CA2237.severity=warning

    # CA2241: Provide correct arguments to formatting methods
    #CA2241: Provide correct arguments to formatting methods
    dotnet_diagnostic.CA2241.severity=warning

    # CA2242: Test for NaN correctly
    #CA2242: Test for NaN correctly
    dotnet_diagnostic.CA2242.severity=warning

    # CA2243: Attribute string literals should parse correctly
    #CA2243: Attribute string literals should parse correctly
    dotnet_diagnostic.CA2243.severity=warning

    # CA2244: Do not duplicate indexed element initializations
    #CA2244: Do not duplicate indexed element initializations
    dotnet_diagnostic.CA2244.severity=warning

    # CA2245: Do not assign a property to itself
    #CA2245: Do not assign a property to itself
    dotnet_diagnostic.CA2245.severity=warning

    # CA2246: Do not assign a symbol and its member in the same statement
    #CA2246: Do not assign a symbol and its member in the same statement
    dotnet_diagnostic.CA2246.severity=warning

    # CA2247: Argument passed to TaskCompletionSource constructor should be TaskCreationOptions enum instead of TaskContinuationOptions enum
    #CA2247: Argument passed to TaskCompletionSource constructor should be TaskCreationOptions enum instead of TaskContinuationOptions enum
    dotnet_diagnostic.CA2247.severity=warning

    # CA2248: Provide correct enum argument to Enum.HasFlag
    #CA2248: Provide correct enum argument to Enum.HasFlag
    dotnet_diagnostic.CA2248.severity=warning

    # CA2249: Consider using String.Contains instead of String.IndexOf
    #CA2249: Consider using String.Contains instead of String.IndexOf
    dotnet_diagnostic.CA2249.severity=warning

    # CA2250: Use ThrowIfCancellationRequested
    #CA2250: Use ThrowIfCancellationRequested
    dotnet_diagnostic.CA2250.severity=warning

    # CA2251: Use String.Equals over String.Compare
    #CA2251: Use String.Equals over String.Compare
    dotnet_diagnostic.CA2251.severity=warning

    #CA2252: Opt in to preview features
    dotnet_diagnostic.CA2252.severity=suggestion

    #CA2253: Named placeholders should not be numeric values
    dotnet_diagnostic.CA2253.severity=warning

    #CA2254: Template should be a static expression
    dotnet_diagnostic.CA2254.severity=warning

    #CA2255: The ModuleInitializer attribute should not be used in libraries
    dotnet_diagnostic.CA225.severity=warning

    #CA2256: All members declared in parent interfaces must have an implementation in a DynamicInterfaceCastableImplementation-attributed interface
    dotnet_diagnostic.CA226.severity=warning

    #CA2257: Members defined on an interface with 'DynamicInterfaceCastableImplementationAttribute' should be 'static'
    dotnet_diagnostic.CA227.severity=warning

    #CA2258: Providing a 'DynamicInterfaceCastableImplementation' interface in Visual Basic is unsupported
    dotnet_diagnostic.CA228.severity=warning

    #### Language Rules ####
    # this and Me preferences (IDE0003 and IDE0009)
    #this and Me preferences (IDE0003 and IDE0009)
    dotnet_diagnostic.IDE0003.severity=suggestion
    dotnet_diagnostic.IDE0009.severity=suggestion
    dotnet_style_qualification_for_field = true:suggestion

    # Simplify 'default' expression (IDE0034)
    # Simplify name (IDE0001)
    dotnet_diagnostic.IDE0001.severity=warning

    # Simplify member access (IDE0002)
    dotnet_diagnostic.IDE0002.severity=silent

    # Remove unnecessary cast (IDE0004)
    dotnet_diagnostic.IDE0004.severity=warning

    # Remove unnecessary import (IDE0005)
    dotnet_diagnostic.IDE0005.severity=warning

    #Simplify 'default' expression (IDE0034)
    dotnet_diagnostic.IDE0034.severity=suggestion

    # Order modifiers (IDE0036)
    #Remove unreachable code (IDE0035)
    dotnet_diagnostic.IDE0035.severity=warning

    #Order modifiers (IDE0036)
    dotnet_diagnostic.IDE0036.severity=warning
    csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async : warning

    # Add accessibility modifiers (IDE0040)
    #Add accessibility modifiers (IDE0040)
    dotnet_diagnostic.IDE0040.severity=error

    # Add readonly modifier (IDE0044)
    # IDE0043: Format string contains invalid placeholder
    dotnet_diagnostic.IDE0043.severity = warning

    #Add readonly modifier (IDE0044)
    dotnet_diagnostic.IDE0044.severity=warning

    # Use language keywords instead of framework type names for type references (IDE0049)
    #Use language keywords instead of framework type names for type references (IDE0049)
    dotnet_diagnostic.IDE0049.severity=suggestion
    dotnet_style_predefined_type_for_locals_parameters_members = true:warning
    dotnet_style_predefined_type_for_member_access = true:warning

    # Convert anonymous type to tuple (IDE0050)
    #Convert anonymous type to tuple (IDE0050)
    dotnet_diagnostic.IDE0050.severity=suggestion

    # Use index operator (IDE0056)
    #Remove unused private member (IDE0051)
    dotnet_diagnostic.IDE0051.severity=suggestion

    #Remove unused private member (IDE0052)
    dotnet_diagnostic.IDE0052.severity=suggestion

    #Use index operator (IDE0056)
    dotnet_diagnostic.IDE0056.severity=suggestion

    # Use range operator (IDE0057)
    #Use range operator (IDE0057)
    dotnet_diagnostic.IDE0057.severity=suggestion

    # Make local function static (IDE0062)
    #Make local function static (IDE0062)
    dotnet_diagnostic.IDE0062.severity=suggestion

    # Add missing cases to switch expression (IDE0072)
    #Add missing cases to switch expression (IDE0072)
    dotnet_diagnostic.IDE0072.severity=suggestion

    # Simplify new expression (IDE0090)
    #Simplify new expression (IDE0090)
    dotnet_diagnostic.IDE0090.severity=suggestion

    # ???
    #???
    dotnet_diagnostic.IDE0120.severity=suggestion

    # Modifier preferences
    #Modifier preferences
    dotnet_style_require_accessibility_modifiers = for_non_interface_members:warning

    # Make local function static (IDE0062)
    #Make local function static (IDE0062)
    dotnet_diagnostic.IDE0062.severity=suggestion
    csharp_prefer_static_local_function = true : suggestion

    # Make struct fields writable (IDE0064)
    #Make struct fields writable (IDE0064)
    dotnet_diagnostic.IDE0064.severity=suggestion

    # Parentheses preferences (IDE0047 and IDE0048)
    #Parentheses preferences (IDE0047 and IDE0048)
    dotnet_diagnostic.IDE0047.severity=warning
    dotnet_diagnostic.IDE0048.severity=warning

    # Add missing cases to switch statement (IDE0010)
    #Add missing cases to switch statement (IDE0010)
    dotnet_diagnostic.IDE0010.severity=suggestion

    # Use object initializers (IDE0017)
    #Use object initializers (IDE0017)
    dotnet_diagnostic.IDE0017.severity=suggestion

    # Inline variable declaration (IDE0018)
    #Inline variable declaration (IDE0018)
    dotnet_diagnostic.IDE0018.severity=suggestion

    # Use collection initializers (IDE0028)
    #Use collection initializers (IDE0028)
    dotnet_diagnostic.IDE0028.severity=suggestion

    # Use auto property (IDE0032)
    #Use auto property (IDE0032)
    dotnet_diagnostic.IDE0032.severity=suggestion

    # Use explicitly provided tuple name (IDE0033)
    #Use explicitly provided tuple name (IDE0033)
    dotnet_diagnostic.IDE0033.severity=suggestion

    # Simplify 'default' expression (IDE0034)
    #Simplify 'default' expression (IDE0034)
    dotnet_diagnostic.IDE0034.severity=suggestion
    csharp_prefer_simple_default_expression = true : suggestion

    # Use inferred member name (IDE0037)
    #Use inferred member name (IDE0037)
    dotnet_diagnostic.IDE0037.severity=suggestion

    # Use local function instead of lambda (IDE0039)
    #Use local function instead of lambda (IDE0039)
    dotnet_diagnostic.IDE0039.severity=suggestion

    # Deconstruct variable declaration (IDE0042)
    #Deconstruct variable declaration (IDE0042)
    dotnet_diagnostic.IDE0042.severity=suggestion

    # Use conditional expression for assignment (IDE0045)
    #Use conditional expression for assignment (IDE0045)
    dotnet_diagnostic.IDE0045.severity=suggestion

    # Use conditional expression for return (IDE0046)
    #Use conditional expression for return (IDE0046)
    dotnet_diagnostic.IDE0046.severity=suggestion

    # Convert anonymous type to tuple (IDE0050)
    #Convert anonymous type to tuple (IDE0050)
    dotnet_diagnostic.IDE050.severity=suggestion

    # Use compound assignment (IDE0054 and IDE0074)
    #Use compound assignment (IDE0054 and IDE0074)
    dotnet_diagnostic.IDE0054.severity=suggestion
    dotnet_diagnostic.IDE0074.severity=suggestion

    # Simplify conditional expression (IDE0075)
    #Simplify conditional expression (IDE0075)
    dotnet_diagnostic.IDE0075.severity=suggestion

    # Convert typeof to nameof (IDE0082)
    #Convert typeof to nameof (IDE0082)
    dotnet_diagnostic.IDE0082.severity=suggestion

    # Simplify new expression (IDE0090)
    #Simplify new expression (IDE0090)
    dotnet_diagnostic.IDE0090.severity=suggestion


    # Use throw expression (IDE0016)
    #Use throw expression (IDE0016)
    dotnet_diagnostic.IDE0016.severity=warning

    # Use coalesce expression (IDE0029 and IDE0030)
    #Use coalesce expression (IDE0029 and IDE0030)
    dotnet_diagnostic.IDE0029.severity=suggestion
    dotnet_diagnostic.IDE0030.severity=suggestion

    # Expression-level preferences
    #Expression-level preferences
    dotnet_style_coalesce_expression = true:suggestion
    dotnet_style_collection_initializer = true:suggestion
    dotnet_style_explicit_tuple_names = true:suggestion
    @@ -895,147 +1070,131 @@ dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggesti
    dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
    dotnet_style_prefer_simplified_interpolation = true:suggestion

    # Field preferences
    #Field preferences
    dotnet_style_readonly_field = true:warning

    # Parameter preferences
    #Parameter preferences
    dotnet_code_quality_unused_parameters = all:warning


    # Suppression preferences
    #Suppression preferences
    dotnet_remove_unnecessary_suppression_exclusions = none

    # Use null propagation (IDE0031)
    #Use null propagation (IDE0031)
    dotnet_diagnostic.IDE0031.severity=suggestion

    # Use is null check (IDE0041)
    #Use is null check (IDE0041)
    dotnet_diagnostic.IDE0041.severity=suggestion

    # Use conditional delegate call (IDE1005)i
    #Use conditional delegate call (IDE1005)i
    dotnet_diagnostic.IDE1005.severity=suggestion

    # 'var' preferences (IDE0007 and IDE0008)
    #'var' preferences (IDE0007 and IDE0008)
    dotnet_diagnostic.IDE0007.severity=warning
    dotnet_diagnostic.IDE0008.severity=warning

    # Use expression body for constructors (IDE0021)
    #Use expression body for constructors (IDE0021)
    dotnet_diagnostic.IDE0021.severity=silent

    # Use expression body for methods (IDE0022)
    #Use expression body for methods (IDE0022)
    dotnet_diagnostic.IDE0022.severity=silent

    # Use expression body for operators (IDE0023 and IDE0024)
    #Use expression body for operators (IDE0023 and IDE0024)
    dotnet_diagnostic.IDE0023.severity=warning
    dotnet_diagnostic.IDE0024.severity=silent

    # Use expression body for properties (IDE0025)
    #Use expression body for properties (IDE0025)
    dotnet_diagnostic.IDE0025.severity=warning

    # Use expression body for indexers (IDE0026)
    #Use expression body for indexers (IDE0026)
    dotnet_diagnostic.IDE0026.severity=suggestion

    # Use expression body for accessors (IDE0027)
    #Use expression body for accessors (IDE0027)
    dotnet_diagnostic.IDE0027.severity=suggestion

    # Use expression body for lambdas (IDE0053)
    #Use expression body for lambdas (IDE0053)
    dotnet_diagnostic.IDE0053.severity=suggestion

    # Use expression body for local functions (IDE0061)
    #Use expression body for local functions (IDE0061)
    dotnet_diagnostic.IDE0061.severity=suggestion

    # Use pattern matching to avoid 'as' followed by a 'null' check (IDE0019)
    #Use pattern matching to avoid 'as' followed by a 'null' check (IDE0019)
    dotnet_diagnostic.IDE0019.severity=suggestion

    # Use pattern matching to avoid 'is' check followed by a cast (IDE0020)
    #Use pattern matching to avoid 'is' check followed by a cast (IDE0020)
    dotnet_diagnostic.IDE0020.severity=suggestion

    # Use switch expression (IDE0066)
    #Use switch expression (IDE0066)
    dotnet_diagnostic.IDE0066.severity=suggestion

    # Use pattern matching (IDE0078)
    #Use pattern matching (IDE0078)
    dotnet_diagnostic.IDE0078.severity=suggestion

    # Use pattern matching (not operator) (IDE0083)
    #Use pattern matching (not operator) (IDE0083)
    dotnet_diagnostic.IDE0083.severity=suggestion

    # Use pattern matching (IsNot operator) (IDE0084)
    #Use pattern matching (IsNot operator) (IDE0084)
    dotnet_diagnostic.IDE0084.severity=suggestion
    visual_basic_style_prefer_isnot_expression = true : suggestion

    # Add braces (IDE0011)
    #Add braces (IDE0011)
    dotnet_diagnostic.IDE0011.severity=error
    csharp_prefer_braces = true : error

    # Use simple 'using' statement (IDE0063)
    # IDE0035: Remove unreachable code
    dotnet_diagnostic.IDE0035.severity = warning

    #Use simple 'using' statement (IDE0063)
    dotnet_diagnostic.IDE0063.severity=suggestion
    csharp_prefer_simple_using_statement = false : disabled

    # 'using' directive placement (IDE0065)
    #'using' directive placement (IDE0065)
    dotnet_diagnostic.IDE0065.severity=warning
    csharp_using_directive_placement = outside_namespace : warning

    # Require file header (IDE0073)
    #Require file header (IDE0073)
    dotnet_diagnostic.IDE0073.severity=warning
    file_header_template = unset

    # Simplify name (IDE0001)
    dotnet_diagnostic.IDE0001.severity=warning

    # Simplify member access (IDE0002)
    dotnet_diagnostic.IDE0002.severity=silent

    # Remove unnecessary cast (IDE0004)
    dotnet_diagnostic.IDE0004.severity=warning

    # Remove unnecessary import (IDE0005)
    dotnet_diagnostic.IDE0005.severity=error
    dotnet_diagnostic.IDE0005_gen.severity=error

    # Remove unreachable code (IDE0035)
    dotnet_diagnostic.IDE0035.severity=warning

    # Remove unused private member (IDE0051)
    dotnet_diagnostic.IDE0051.severity=error

    # Remove unread private member (IDE0052)
    #Remove unread private member (IDE0052)
    dotnet_diagnostic.IDE0052.severity=error

    # Remove unnecessary expression value (IDE0058)
    #Remove unnecessary expression value (IDE0058)
    dotnet_diagnostic.IDE0058.severity=warning

    # Remove unnecessary value assignment (IDE0059)
    #Remove unnecessary value assignment (IDE0059)
    dotnet_diagnostic.IDE0059.severity=error

    # Remove unused parameter (IDE0060)
    #Remove unused parameter (IDE0060)
    dotnet_diagnostic.IDE0060.severity=error

    # Remove unnecessary suppression (IDE0079)
    #Remove unnecessary suppression (IDE0079)
    dotnet_diagnostic.IDE0079.severity=error

    # Remove unnecessary suppression operator (IDE0080)
    #Remove unnecessary suppression operator (IDE0080)
    dotnet_diagnostic.IDE0080.severity=suggestion

    # Remove ByVal (IDE0081)
    #Remove ByVal (IDE0081)
    dotnet_diagnostic.IDE0080.severity=warning

    # Remove unnecessary equality operator (IDE0100)
    #Remove unnecessary equality operator (IDE0100)
    dotnet_diagnostic.IDE0100.severity=warning

    # Remove unnecessary discard (IDE0110)
    #Remove unnecessary discard (IDE0110)
    dotnet_diagnostic.IDE0110.severity=warning

    # Simplify object creation (IDE0140)
    #Simplify object creation (IDE0140)
    dotnet_diagnostic.IDE0110.severity=suggestion
    visual_basic_style_prefer_simplified_object_creation = all : suggestion

    # IDE0055 (Fix formatting)
    dotnet_diagnostic.IDE0055.severity=suggestion
    #IDE0055 (Fix formatting)
    dotnet_diagnostic.IDE0055.severity=warning

    # Organize usings
    #Organize usings
    dotnet_separate_import_directive_groups = false
    dotnet_sort_system_directives_first = true

    # IDE1006 (Naming rule violation)
    #IDE1006 (Naming rule violation)
    dotnet_diagnostic.IDE1006.severity=warning
    dotnet_naming_rule.public_members_must_be_capitalized.severity = warning
    dotnet_naming_rule.public_members_must_be_capitalized.style = first_word_upper_case_style
    @@ -1049,333 +1208,410 @@ dotnet_naming_symbols.public_symbols.required_modifiers = readonly
    dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum

    # RS0016: Only enable if API files are present
    dotnet_public_api_analyzer.require_api_files = true

    # warning RS0005: Do not use generic CodeAction.Create to create CodeAction
    dotnet_diagnostic.RS0005.severity = none

    #### Unnecessary Code Rules ####

    # Remove unnecessary expression value (IDE0058)
    #Remove unnecessary expression value (IDE0058)
    dotnet_diagnostic.IDE0058.severity=suggestion


    #### Design Rules ####
    # CA1000: Do not declare static members on generic typesk
    #CA1000: Do not declare static members on generic typesk
    dotnet_diagnostic.CA1000.severity=suggestion

    # CA1001: Types that own disposable fields should be disposable
    #CA1001: Types that own disposable fields should be disposable
    dotnet_diagnostic.CA1001.severity=error

    # CA1002: Do not expose generic lists
    #CA1002: Do not expose generic lists
    dotnet_diagnostic.CA1002.severity=error

    # CA1003: Use generic event handler instances
    #CA1003: Use generic event handler instances
    dotnet_diagnostic.CA1003.severity=warning

    # CA1005: Avoid excessive parameters on generic types
    #CA1005: Avoid excessive parameters on generic types
    dotnet_diagnostic.CA1005.severity=warning

    # CA1008: Enums should have zero value
    #CA1008: Enums should have zero value
    dotnet_diagnostic.CA1008.severity=error

    # CA1010: Collections should implement generic interface
    #CA1010: Collections should implement generic interface
    dotnet_diagnostic.CA1008.severity=warning

    # CA1012: Abstract types should not have public constructors
    #CA1012: Abstract types should not have public constructors
    dotnet_diagnostic.CA1012.severity=warning

    # CA1014: Mark assemblies with CLSCompliantAttribute
    dotnet_diagnostic.CA1012.severity=suggestion
    #CA1014: Mark assemblies with CLSCompliantAttribute
    dotnet_diagnostic.CA1014.severity=none

    # CA1016: Mark assemblies with AssemblyVersionAttribute
    #CA1016: Mark assemblies with AssemblyVersionAttribute
    dotnet_diagnostic.CA1016.severity=error

    # CA1017: Mark assemblies with ComVisibleAttribute
    #CA1017: Mark assemblies with ComVisibleAttribute
    dotnet_diagnostic.CA1017.severity=suggestion

    # CA1018: Mark attributes with AttributeUsageAttribute
    #CA1018: Mark attributes with AttributeUsageAttribute
    dotnet_diagnostic.CA1018.severity=suggestion

    # CA1019: Define accessors for attribute arguments
    #CA1019: Define accessors for attribute arguments
    dotnet_diagnostic.CA1019.severity=suggestion

    # CA1021: Avoid out parameters
    #CA1021: Avoid out parameters
    dotnet_diagnostic.CA1021.severity=suggestion

    # CA1024: Use properties where appropriate
    #CA1024: Use properties where appropriate
    dotnet_diagnostic.CA1024.severity=suggestion

    # CA1027: Mark enums with FlagsAttribute
    #CA1027: Mark enums with FlagsAttribute
    dotnet_diagnostic.CA1027.severity=error

    # CA1028: Enum storage should be Int32
    #CA1028: Enum storage should be Int32
    dotnet_diagnostic.CA1028.severity=error

    # CA1030: Use events where appropriate
    #CA1030: Use events where appropriate
    dotnet_diagnostic.CA1030.severity=suggestion

    # CA1031: Do not catch general exception types
    dotnet_diagnostic.CA1031.severity=error
    #CA1031: Do not catch general exception types
    dotnet_diagnostic.CA1031.severity=none

    # CA1032: Implement standard exception constructors
    #CA1032: Implement standard exception constructors
    dotnet_diagnostic.CA1032.severity=suggestion

    # CA1033: Interface methods should be callable by child types
    #CA1033: Interface methods should be callable by child types
    dotnet_diagnostic.CA1033.severity=suggestion

    # CA1034: Nested types should not be visible
    #CA1034: Nested types should not be visible
    dotnet_diagnostic.CA1034.severity=error

    # CA1036: Override methods on comparable types
    #CA1036: Override methods on comparable types
    dotnet_diagnostic.CA1036.severity=suggestion

    # CA1040: Avoid empty interfaces
    #CA1040: Avoid empty interfaces
    dotnet_diagnostic.CA1040.severity=suggestion

    # CA1041: Provide ObsoleteAttribute message
    #CA1041: Provide ObsoleteAttribute message
    dotnet_diagnostic.CA1041.severity=warning

    # CA1043: Use integral or string argument for indexers
    #CA1043: Use integral or string argument for indexers
    dotnet_diagnostic.CA1043.severity=suggestion

    # CA1044: Properties should not be write only
    #CA1044: Properties should not be write only
    dotnet_diagnostic.CA1044.severity=error

    # CA1045: Do not pass types by reference
    #CA1045: Do not pass types by reference
    dotnet_diagnostic.CA1045.severity=warning

    # CA1046: Do not overload operator equals on reference types
    #CA1046: Do not overload operator equals on reference types
    dotnet_diagnostic.CA1046.severity=warning

    # CA1047: Do not declare protected members in sealed types
    #CA1047: Do not declare protected members in sealed types
    dotnet_diagnostic.CA1047.severity=error

    # CA1050: Declare types in namespaces
    #CA1050: Declare types in namespaces
    dotnet_diagnostic.CA1050.severity=warning

    # CA1051: Do not declare visible instance fields
    #CA1051: Do not declare visible instance fields
    dotnet_diagnostic.CA1051.severity=error

    # CA1052: Static holder types should be Static or NotInheritable
    #CA1052: Static holder types should be Static or NotInheritable
    dotnet_diagnostic.CA1052.severity=warning

    # CA1053: Static holder types should not have default constructors
    #CA1053: Static holder types should not have default constructors
    dotnet_diagnostic.CA1053.severity=warning

    # CA1054: URI parameters should not be strings
    #CA1054: URI parameters should not be strings
    dotnet_diagnostic.CA1054.severity=warning

    # CA1055: URI return values should not be strings
    #CA1055: URI return values should not be strings
    dotnet_diagnostic.CA1055.severity=warning

    # CA1056: URI properties should not be strings
    #CA1056: URI properties should not be strings
    dotnet_diagnostic.CA1056.severity=warning

    # CA1058: Types should not extend certain base types
    #CA1058: Types should not extend certain base types
    dotnet_diagnostic.CA1058.severity=warning

    # CA1060: Move P/Invokes to NativeMethods class
    #CA1060: Move P/Invokes to NativeMethods class
    dotnet_diagnostic.CA1060.severity=warning

    # CA1061: Do not hide base class methods
    #CA1061: Do not hide base class methods
    dotnet_diagnostic.CA1061.severity=warning

    # CA1062: Validate arguments of public methods
    #CA1062: Validate arguments of public methods
    dotnet_diagnostic.CA1062.severity=suggestion

    # CA1063: Implement IDisposable correctly
    #CA1063: Implement IDisposable correctly
    dotnet_diagnostic.CA1063.severity=error

    # CA1064: Exceptions should be public
    #CA1064: Exceptions should be public
    dotnet_diagnostic.CA1064.severity=warning

    # CA1065: Do not raise exceptions in unexpected locations
    #CA1065: Do not raise exceptions in unexpected locations
    dotnet_diagnostic.CA1065.severity=warning

    # CA1066: Implement IEquatable when overriding Equals
    #CA1066: Implement IEquatable when overriding Equals
    dotnet_diagnostic.CA1066.severity=warning

    # CA1067: Override Equals when implementing IEquatable
    #CA1067: Override Equals when implementing IEquatable
    dotnet_diagnostic.CA1067.severity=warning

    # CA1068: CancellationToken parameters must come last
    #CA1068: CancellationToken parameters must come last
    dotnet_diagnostic.CA1068.severity=warning

    # CA1069: Enums should not have duplicate values
    #CA1069: Enums should not have duplicate values
    dotnet_diagnostic.CA1069.severity=error

    # CA1070: Do not declare event fields as virtual
    #CA1070: Do not declare event fields as virtual
    dotnet_diagnostic.CA1070.severity=warning

    #### Documentation Rules ####

    # CA1200: Avoid using cref tags with a prefix
    #CA1200: Avoid using cref tags with a prefix
    dotnet_diagnostic.CA1200.severity=suggestion

    #### Globalization Rules ####

    # CA1303: Do not pass literals as localized parameters
    #CA1303: Do not pass literals as localized parameters
    dotnet_diagnostic.CA1303.severity=warning

    # CA1304: Specify CultureInfo
    #CA1304: Specify CultureInfo
    dotnet_diagnostic.CA1304.severity=error

    # CA1305: Specify IFormatProvider
    #CA1305: Specify IFormatProvider
    dotnet_diagnostic.CA1305.severity=error

    # CA1307: Specify StringComparison for clarity
    #CA1307: Specify StringComparison for clarity
    dotnet_diagnostic.CA1307.severity=error

    # CA1308: Normalize strings to uppercase
    #CA1308: Normalize strings to uppercase
    dotnet_diagnostic.CA1308.severity=warning

    # CA1309: Use ordinal StringComparison
    #CA1309: Use ordinal StringComparison
    dotnet_diagnostic.CA1309.severity=warning

    # CA1310: Specify StringComparison for correctness
    #CA1310: Specify StringComparison for correctness
    dotnet_diagnostic.CA1310.severity=warning

    # CA2101: Specify marshaling for P/Invoke string arguments
    #CA2101: Specify marshaling for P/Invoke string arguments
    dotnet_diagnostic.CA2101.severity=warning

    #### SingleFile Rules ####

    # IL3000: Avoid using accessing Assembly file path when publishing as a single-file
    #IL3000: Avoid using accessing Assembly file path when publishing as a single-file
    dotnet_diagnostic.IL3000.severity = error

    # IL3001: Avoid using accessing Assembly file path when publishing as a single-file
    #IL3001: Avoid using accessing Assembly file path when publishing as a single-file
    dotnet_diagnostic.IL3001.severity = error

    # IL3002: Avoid calling members annotated with 'RequiresAssemblyFilesAttribute' when publishing as a single file.
    #IL3002: Avoid calling members annotated with 'RequiresAssemblyFilesAttribute' when publishing as a single file.
    dotnet_diagnostic.IL3002.severity = error

    #IL3003 'RequiresAssemblyFilesAttribute' annotations must match across all interface implementations or overrides.
    dotnet_diagnostic.IL3003.severity = error

    #### Miscellaneous Rules ####

    # Remove invalid global 'SuppressMessageAttribute' (IDE0076)
    #Remove invalid global 'SuppressMessageAttribute' (IDE0076)
    dotnet_diagnostic.IDE0076.severity=suggestion

    # Avoid legacy format target in global 'SuppressMessageAttribute' (IDE0077)
    #Avoid legacy format target in global 'SuppressMessageAttribute' (IDE0077)
    dotnet_diagnostic.IDE0077.severity=suggestion

    #### StyleCop Rules ####

    # A violation of this rule occurs when a compilation (project) contains one or more files which are parsed with the DocumentationMode set to None. This most frequently occurs when the project is configured to not produce an XML documentation file during the build.
    #A violation of this rule occurs when a compilation (project) contains one or more files which are parsed with the DocumentationMode set to None. This most frequently occurs when the project is configured to not produce an XML documentation file during the build.
    dotnet_diagnostic.SA0001.severity = warning

    # This rule reports cases where the StyleCop Analyzers settings file could not be loaded.
    dotnet_diagnostic.SA0001.severity = error
    #SA1000 The spacing around a C# keyword is incorrect.
    dotnet_diagnostic.SA1000.severity = warning

    #SA1100 DoNotPrefixCallsWithBaseUnlessLocalImplementationExists
    dotnet_diagnostic.SA1100.severity = warning

    #SA1120 CommentsMustContainText
    dotnet_diagnostic.SA1120.severity = warning

    #SA1124 DoNotUseRegions
    dotnet_diagnostic.SA1124.severity = warning

    #SA1200 UsingDirectivesMustBePlacedCorrectly
    dotnet_diagnostic.SA1200.severity = warning

    #SA1201 ElementsMustAppearInTheCorrectOrder
    dotnet_diagnostic.SA1201.severity = warning

    # A field name in C# begins with an underscore.
    #SA1202 ElementsMustBeOrderedByAccess
    dotnet_diagnostic.SA1202.severity = warning

    #SA1203 ConstantsMustAppearBeforeFields
    dotnet_diagnostic.SA1202.severity = warning

    #SA1300 ElementMustBeginWithUpperCaseLetter
    dotnet_diagnostic.SA1300.severity = error

    #SA1302 InterfaceNamesMustBeginWithI
    dotnet_diagnostic.SA1302.severity = error

    #SA1303 ConstFieldNamesMustBeginWithUpperCaseLetter
    dotnet_diagnostic.SA1303.severity = error

    #SA1305 FieldNamesMustNotUseHungarianNotation
    dotnet_diagnostic.SA1305.severity = warning

    #SA1308 VariableNamesMustNotBePrefixed
    dotnet_diagnostic.SA1308.severity = warning

    #SA1309 A field name in C# begins with an underscore.
    dotnet_diagnostic.SA1309.severity = warning

    # A Code Analysis SuppressMessage attribute does not include a justification.
    dotnet_diagnostic.SA1404.severity = none
    #SA1312 VariableNamesMustBeginWithLowerCaseLetter
    dotnet_diagnostic.SA1312.severity = warning

    #SA1313 ParameterNamesMustBeginWithLowerCaseLetter
    dotnet_diagnostic.SA1313.severity = error

    #SA1316 TupleElementNamesShouldUseCorrectCasing
    dotnet_diagnostic.SA1316.severity = warning

    # SA1636: File header copyright text should match
    #SA1404 A Code Analysis SuppressMessage attribute does not include a justification.
    dotnet_diagnostic.SA1404.severity = warning

    #SA1500 BracesForMultiLineStatementsMustNotShareLine
    dotnet_diagnostic.SA1500.severity = warning

    #SA1502 ElementMustNotBeOnSingleLine
    dotnet_diagnostic.SA1502.severity = warning

    #SA1503 BracesMustNotBeOmitted
    dotnet_diagnostic.SA1503.severity = warning

    #SA1513 ClosingBraceMustBeFollowedByBlankLine
    dotnet_diagnostic.SA1513.severity = warning

    #SA1520 UseBracesConsistently
    dotnet_diagnostic.SA1520.severity = warning

    #SA1636: File header copyright text should match
    dotnet_diagnostic.SA1636.severity = suggestion

    #SA1650 ElementDocumentationMustBeSpelledCorrectly
    dotnet_diagnostic.SA1650.severity = warning

    #RETURN0001 Do not return null
    dotnet_diagnostic.RETURN0001.severity = warning

    #### Async Rules ####

    # ASYNC0001: Asynchronous method names should end with Async
    #ASYNC0001: Asynchronous method names should end with Async
    dotnet_diagnostic.ASYNC0001.severity = error

    # ASYNC0002: Non asynchronous method names should end with Async
    #ASYNC0002: Non asynchronous method names should end with Async
    dotnet_diagnostic.ASYNC0002.severity = error

    # ASYNC0003: Avoid void returning asynchronous method
    #ASYNC0003: Avoid void returning asynchronous method
    dotnet_diagnostic.ASYNC0003.severity = warning

    # ASYNC0004: Use ConfigureAwait(false) on await expression
    #ASYNC0004: Use ConfigureAwait(false) on await expression
    dotnet_diagnostic.ASYNC0004.severity = error

    # CA1828: Do not use CountAsync/LongCountAsync when AnyAsync can be used
    #CA1828: Do not use CountAsync/LongCountAsync when AnyAsync can be used
    dotnet_diagnostic.CA1828.severity=suggestion

    # MA0045: Do not use blocking call (make method async)
    #MA0045: Do not use blocking call (make method async)
    dotnet_diagnostic.MA0045.severity = none

    # RCS1090: Call 'ConfigureAwait(false)'.
    #RCS1090: Call 'ConfigureAwait(false)'.
    dotnet_diagnostic.RCS1090.severity = error

    # RCS1210: Return completed task instead of returning null
    #RCS1210: Return completed task instead of returning null
    dotnet_diagnostic.RCS1210.severity = error

    # AsyncifyInvocation: Use Task Async
    #AsyncifyInvocation: Use Task Async
    dotnet_diagnostic.AsyncifyInvocation.severity = error

    # AsyncifyVariable: Use Task Async
    #AsyncifyVariable: Use Task Async
    dotnet_diagnostic.AsyncifyVariable.severity = error

    # VSTHRD111: Use ConfigureAwait(bool)
    #VSTHRD111: Use ConfigureAwait(bool)
    dotnet_diagnostic.VSTHRD111.severity = error

    # VSTHRD114: Avoid returning a null Task
    #VSTHRD114: Avoid returning a null Task
    dotnet_diagnostic.VSTHRD114.severity = error

    # VSTHRD200: Use "Async" suffix for async methods
    #VSTHRD200: Use "Async" suffix for async methods
    dotnet_diagnostic.VSTHRD200.severity = error

    #RCS1046: Asynchronous method name should end with 'Async'.
    dotnet_diagnostic.RCS1046.severity = error

    # VSTHRD200: Use "Async" suffix for async methods
    #VSTHRD200: Use "Async" suffix for async methods
    dotnet_diagnostic.VSTHRD200.severity = error

    # RCS1047: Non-asynchronous method name should not end with 'Async'.
    #RCS1047: Non-asynchronous method name should not end with 'Async'.
    dotnet_diagnostic.RCS1047.severity = error

    #### Class Rules ####

    # CLASS0001: Seal Class
    #CLASS0001: Seal Class
    dotnet_diagnostic.CLASS0001.severity = warning

    #### Enum Rules ####

    # ENUM0001: Default switch label
    #ENUM0001: Default switch label
    dotnet_diagnostic.ENUM0001.severity = warning

    # ENUM0002: Merge switch sections
    #ENUM0002: Merge switch sections
    dotnet_diagnostic.ENUM0002.severity = warning

    # ENUM0003: Populate switch
    #ENUM0003: Populate switch
    dotnet_diagnostic.ENUM0003.severity = warning

    tab_width = 4
    dotnet_style_allow_statement_immediately_after_block_experimental = true:silent
    dotnet_style_namespace_match_folder = true:suggestion
    dotnet_style_allow_multiple_blank_lines_experimental = true:silent
    dotnet_style_allow_multiple_blank_lines_experimental = false:silent

    #### C# Coding Conventions ####
    [*.cs]
    # Prefer "var" everywhere (Implicit and explicit types)
    csharp_style_var_elsewhere = true:suggestion

    #Prefer "var" everywhere (Implicit and explicit types)
    csharp_style_var_elsewhere = false:suggestion
    csharp_style_var_for_built_in_types = true:suggestion
    csharp_style_var_when_type_is_apparent = true:warning
    csharp_style_var_when_type_is_apparent = true:suggestion

    # Expression-Bodied members
    csharp_style_expression_bodied_accessors = true:silent
    #Expression-Bodied members
    csharp_style_expression_bodied_accessors = true:none
    csharp_style_expression_bodied_constructors = false:silent
    csharp_style_expression_bodied_indexers = true:silent
    csharp_style_expression_bodied_indexers = true:none
    csharp_style_expression_bodied_lambdas = true:silent
    csharp_style_expression_bodied_local_functions = false:silent
    csharp_style_expression_bodied_methods = false:silent
    csharp_style_expression_bodied_operators = false:silent
    csharp_style_expression_bodied_properties = true:silent
    csharp_style_expression_bodied_properties = true:none

    # Pattern matching preferences
    #Pattern matching preferences
    csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
    csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
    csharp_style_prefer_not_pattern = true:suggestion
    csharp_style_prefer_pattern_matching = true:silent
    csharp_style_prefer_switch_expression = true:suggestion

    # Null-checking preferences
    #Null-checking preferences
    csharp_style_conditional_delegate_call = true:warning

    # Modifier preferences
    #Modifier preferences
    csharp_prefer_static_local_function = true:suggestion
    csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion

    # Code-block preferences
    #Code-block preferences
    csharp_prefer_braces = true:suggestion
    csharp_prefer_simple_using_statement = false:silent

    # Expression-level preferences
    #Expression-level preferences
    csharp_prefer_simple_default_expression = true:warning
    csharp_style_deconstructed_variable_declaration = true:warning
    csharp_style_implicit_object_creation_when_type_is_apparent = true:suggestion
    @@ -1387,12 +1623,12 @@ csharp_style_throw_expression = true:suggestion
    csharp_style_unused_value_assignment_preference = discard_variable:suggestion
    csharp_style_unused_value_expression_statement_preference = discard_variable:silent

    # 'using' directive preferences
    csharp_using_directive_placement = outside_namespace:silent
    #'using' directive preferences
    csharp_using_directive_placement = outside_namespace:warning

    #### C# Formatting Rules ####

    # New line preferences
    #New line preferences
    csharp_new_line_before_catch = true
    csharp_new_line_before_else = true
    csharp_new_line_before_finally = true
    @@ -1401,15 +1637,15 @@ csharp_new_line_before_members_in_object_initializers = true
    csharp_new_line_before_open_brace = all
    csharp_new_line_between_query_expression_clauses = true

    # Indentation preferences
    #Indentation preferences
    csharp_indent_block_contents = true
    csharp_indent_braces = false
    csharp_indent_case_contents = true
    csharp_indent_case_contents_when_block = true
    csharp_indent_labels = one_less_than_current
    csharp_indent_switch_labels = true

    # Space preferences
    #Space preferences
    csharp_space_after_cast = false
    csharp_space_after_colon_in_inheritance_clause = true
    csharp_space_after_comma = true
    @@ -1433,11 +1669,11 @@ csharp_space_between_method_declaration_parameter_list_parentheses = false
    csharp_space_between_parentheses = false
    csharp_space_between_square_brackets = false

    # Wrapping preferences
    #Wrapping preferences
    csharp_preserve_single_line_blocks = true
    csharp_preserve_single_line_statements = true

    # New line preferences
    #New line preferences
    csharp_new_line_before_catch = true
    csharp_new_line_before_else = true
    csharp_new_line_before_finally = true
    @@ -1446,15 +1682,15 @@ csharp_new_line_before_members_in_object_initializers = true
    csharp_new_line_before_open_brace = all
    csharp_new_line_between_query_expression_clauses = true

    # Indentation preferences
    #Indentation preferences
    csharp_indent_block_contents = true
    csharp_indent_braces = false
    csharp_indent_case_contents = true
    csharp_indent_case_contents_when_block = true
    csharp_indent_labels = one_less_than_current
    csharp_indent_switch_labels = true

    # Space preferences
    #Space preferences
    csharp_space_after_cast = false
    csharp_space_after_colon_in_inheritance_clause = true
    csharp_space_after_comma = true
    @@ -1478,21 +1714,25 @@ csharp_space_between_method_declaration_parameter_list_parentheses = false
    csharp_space_between_parentheses = expressions
    csharp_space_between_square_brackets = false

    # Wrapping preferences
    #Wrapping preferences
    csharp_preserve_single_line_blocks = true
    csharp_preserve_single_line_statements = true
    csharp_style_namespace_declarations = block_scoped:silent
    csharp_style_allow_embedded_statements_on_same_line_experimental = true:silent
    csharp_style_prefer_null_check_over_type_check = true:suggestion
    csharp_style_prefer_tuple_swap = true:suggestion
    csharp_style_prefer_local_over_anonymous_function = true:suggestion
    csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true:silent
    csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true:silent
    csharp_style_allow_embedded_statements_on_same_line_experimental = true:silent
    csharp_style_namespace_declarations = file_scoped:silent
    csharp_style_prefer_extended_property_pattern = true:suggestion
    dotnet_diagnostic.IDISP004.severity = error
    dotnet_diagnostic.IDISP006.severity = error
    dotnet_diagnostic.IDISP009.severity = error
    dotnet_diagnostic.IDISP012.severity = error
    dotnet_diagnostic.IDISP024.severity = error
    dotnet_diagnostic.IDE0063.severity = silent
    dotnet_diagnostic.IDE0130.severity = warning
    csharp_style_prefer_local_over_anonymous_function = true:suggestion
    csharp_style_prefer_null_check_over_type_check = true:suggestion
    csharp_style_prefer_tuple_swap = true:suggestion
    csharp_style_prefer_method_group_conversion = true:silent
    csharp_style_prefer_parameter_null_checking = true:suggestion
    csharp_style_prefer_top_level_statements = true:silent

    #[src/{VisualStudio}/**/*.{cs,vb}]
    # CA1822: Make member static
    # There is a risk of accidentally breaking an internal API that partners rely on though IVT.
    dotnet_code_quality.CA1822.api_surface = private

    [*.g.cs]
    dotnet_diagnostic.CS1591.severity = none
  8. @RealDotNetDave RealDotNetDave revised this gist Mar 25, 2022. 1 changed file with 1330 additions and 159 deletions.
    1,489 changes: 1,330 additions & 159 deletions .editorConfig
    Original file line number Diff line number Diff line change
    @@ -7,29 +7,46 @@ end_of_line = crlf
    indent_size = 4
    indent_style = tab
    insert_final_newline = true
    trim_trailing_whitespace = true
    file_header_template = unset
    trim_trailing_whitespace = trueSimplify name (IDE0001)

    [*.{cs,vb}]
    # Organize usings
    dotnet_separate_import_directive_groups = false
    dotnet_sort_system_directives_first = true
    # Code files
    [*.{cs,csx,vb,vbx}]
    charset = utf-8-bom

    # Xml project files
    [*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
    indent_size = 4

    # Xml config files
    [*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct,xml,stylecop}]
    indent_size = 2

    # JSON files
    [*.{json,json5}]
    indent_size = 2

    # YAML Files
    [*.{yml,yaml}]
    indent_size = 2

    # Shell scripts
    [*.sh]
    end_of_line = lf

    # Public members must be capitalized (public_members_must_be_capitalized)
    dotnet_naming_rule.public_members_must_be_capitalized.symbols = public_symbols
    dotnet_naming_symbols.public_symbols.applicable_kinds = property,method,field,event,delegate
    dotnet_naming_symbols.public_symbols.applicable_accessibilities = public
    dotnet_naming_symbols.public_symbols.required_modifiers = readonly
    [*.{cmd,bat}]
    end_of_line = crlf

    dotnet_naming_rule.public_members_must_be_capitalized.style = first_word_upper_case_style
    dotnet_naming_style.first_word_upper_case_style.capitalization = first_word_upper
    # Web Files
    [*.{htm,html,js,ts,css,scss,less}]
    indent_size = 2
    insert_final_newline = true

    dotnet_naming_rule.public_members_must_be_capitalized.severity = warning
    [*.{cs,vb}]

    # Non-private static fields are PascalCase
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.severity = warning
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.symbols = non_private_static_fields
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.style = non_private_static_field_style

    dotnet_naming_symbols.non_private_static_fields.applicable_kinds = field
    dotnet_naming_symbols.non_private_static_fields.applicable_accessibilities = public, protected, internal, protected internal
    @@ -38,112 +55,82 @@ dotnet_naming_symbols.non_private_static_fields.required_modifiers = st
    dotnet_naming_style.non_private_static_field_style.capitalization = pascal_case

    # Constants are PascalCase
    dotnet_naming_rule.constants_should_be_pascal_case.severity = warning
    dotnet_naming_rule.constants_should_be_pascal_case.severity = warning
    dotnet_naming_rule.constants_should_be_pascal_case.symbols = constants
    dotnet_naming_rule.constants_should_be_pascal_case.style = constant_style
    dotnet_naming_rule.constants_should_be_pascal_case.style = non_private_static_field_style

    dotnet_naming_symbols.constants.applicable_kinds = field, local
    dotnet_naming_symbols.constants.required_modifiers = const

    dotnet_naming_style.constant_style.capitalization = pascal_case

    # Locals and parameters are camelCase
    dotnet_naming_rule.locals_should_be_camel_case.severity = warning
    dotnet_naming_rule.locals_should_be_camel_case.severity = warning
    dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters
    dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style

    dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style
    dotnet_naming_symbols.locals_and_parameters.applicable_kinds = parameter, local

    dotnet_naming_symbols.static_fields.required_modifiers = static
    dotnet_naming_style.camel_case_style.capitalization = camel_case
    dotnet_naming_style.static_field_style.required_prefix = s_

    # Type Parameters
    dotnet_naming_style.type_parameter_style.capitalization = pascal_case
    dotnet_naming_style.type_parameter_style.required_prefix = T

    dotnet_naming_rule.type_parameter_naming.symbols = type_parameter_symbol
    dotnet_naming_rule.type_parameter_naming.style = type_parameter_style
    dotnet_naming_rule.type_parameter_naming.severity = warning
    dotnet_naming_symbols.type_parameter_symbol.applicable_kinds = type_parameter
    dotnet_naming_symbols.type_parameter_symbol.applicable_accessibilities = *

    # Instance fields are camelCase and start with _
    dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion
    dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style
    dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
    dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
    dotnet_naming_style.camel_case_underscore_style.required_prefix = _
    dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal
    dotnet_naming_symbols.private_internal_fields.applicable_kinds = field

    # Local functions are PascalCase
    dotnet_naming_rule.local_functions_should_be_pascal_case.severity = warning
    dotnet_naming_rule.local_functions_should_be_pascal_case.severity = warning
    dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = local_functions
    dotnet_naming_rule.local_functions_should_be_pascal_case.style = local_function_style

    dotnet_naming_rule.local_functions_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_symbols.local_functions.applicable_kinds = local_function

    dotnet_naming_style.local_function_style.capitalization = pascal_case

    dotnet_diagnostic.CS8618.severity = silent
    dotnet_diagnostic.SA1309.severity = none
    dotnet_diagnostic.SA1404.severity = none

    # SA1636: File header copyright text should match
    dotnet_diagnostic.SA1636.severity = silent

    # this. and Me. preferences
    dotnet_style_qualification_for_event = true : suggestion
    dotnet_style_qualification_for_field = true : suggestion
    dotnet_style_qualification_for_method = true : suggestion
    dotnet_style_qualification_for_property = true : suggestion

    # Language keywords vs BCL types preferences
    dotnet_style_predefined_type_for_locals_parameters_members = true : silent
    dotnet_style_predefined_type_for_member_access = true : silent
    dotnet_style_qualification_for_event = true:suggestion
    dotnet_style_qualification_for_field = true : suggestion
    dotnet_style_qualification_for_method = true:suggestion
    dotnet_style_qualification_for_property = true:suggestion

    # Parentheses preferences
    dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity : suggestion
    dotnet_style_parentheses_in_other_binary_operators = always_for_clarity : suggestion
    dotnet_style_parentheses_in_other_operators = never_if_unnecessary : suggestion
    dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity : suggestion

    # Modifier preferences
    dotnet_style_require_accessibility_modifiers = for_non_interface_members : warning

    # Expression-level preferences
    dotnet_style_collection_initializer = true : suggestion
    dotnet_style_coalesce_expression = true : suggestion
    dotnet_style_explicit_tuple_names = true : suggestion
    dotnet_style_null_propagation = true : suggestion
    dotnet_style_object_initializer = true : suggestion
    dotnet_style_operator_placement_when_wrapping = beginning_of_line
    dotnet_style_prefer_auto_properties = true : silent
    dotnet_style_prefer_compound_assignment = true : suggestion
    dotnet_style_prefer_conditional_expression_over_assignment = true : silent
    dotnet_style_prefer_conditional_expression_over_return = true : silent
    dotnet_style_prefer_inferred_anonymous_type_member_names = true : suggestion
    dotnet_style_prefer_inferred_tuple_names = true : suggestion
    dotnet_style_prefer_is_null_check_over_reference_equality_method = true : suggestion
    dotnet_style_prefer_simplified_boolean_expressions = true : suggestion
    dotnet_style_prefer_simplified_interpolation = true : suggestion

    # Field preferences
    dotnet_style_readonly_field = true : warning

    # Parameter preferences
    dotnet_code_quality_unused_parameters = all : suggestion

    # Suppression preferences
    dotnet_remove_unnecessary_suppression_exclusions = none
    dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:suggestion
    dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:suggestion
    dotnet_style_parentheses_in_other_operators = never_if_unnecessary:suggestion
    dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:suggestion

    #### Naming styles ####
    dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning
    dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning
    dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
    dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i

    dotnet_naming_rule.types_should_be_pascal_case.severity = warning
    dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
    dotnet_naming_rule.types_should_be_pascal_case.severity = warning
    dotnet_naming_rule.types_should_be_pascal_case.symbols = types
    dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
    dotnet_naming_rule.types_should_be_pascal_case.style = non_private_static_field_style

    dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning
    # By default, name items with PascalCase
    dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning
    dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
    dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case

    dotnet_naming_rule.non_field_members_should_be_pascal_case.style = non_private_static_field_style
    dotnet_naming_symbols.all_members.applicable_kinds = *

    dotnet_naming_style.pascal_case_style.capitalization = pascal_case

    # Symbol specifications

    dotnet_naming_symbols.interface.applicable_kinds = interface
    dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.interface.required_modifiers =

    dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
    dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.types.required_modifiers =

    dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
    dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.non_field_members.required_modifiers = *
    @@ -154,57 +141,1173 @@ dotnet_naming_style.pascal_case.required_prefix =
    dotnet_naming_style.pascal_case.required_suffix =
    dotnet_naming_style.pascal_case.word_separator =
    dotnet_naming_style.pascal_case.capitalization = pascal_case

    dotnet_naming_style.begins_with_i.required_prefix = I
    dotnet_naming_style.begins_with_i.required_suffix =
    dotnet_naming_style.begins_with_i.word_separator =
    dotnet_naming_style.begins_with_i.capitalization = pascal_case

    #Diagnostics
    #------------------------------------------------
    #Turn off checking generated code
    dotnet_diagnostic.CA1822.severity = none

    #Async
    # ASYNC0004: Use ConfigureAwait(false) on await expression
    dotnet_diagnostic.ASYNC0004.severity = error
    #### Diagnostic ####

    # VSTHRD002: Avoid problematic synchronous waits
    dotnet_diagnostic.VSTHRD002.severity= error

    # MA0004: Use .ConfigureAwait(false)
    dotnet_diagnostic.MA0004.severity = error
    # CA1401: P/Invokes should not be visible
    dotnet_diagnostic.CA1401.severity=error

    # RCS1090: Call 'ConfigureAwait(false)'.
    dotnet_diagnostic.RCS1090.severity = error
    # CA1416: Validate platform compatibility
    dotnet_diagnostic.CA1416.severity=suggestion

    # VSTHRD111: Use ConfigureAwait(bool)
    dotnet_diagnostic.VSTHRD111.severity = error
    # CA1417: Do not use OutAttribute on string parameters for P/Invokes
    dotnet_diagnostic.CA1417.severity=suggestion

    # CA2007: Consider calling ConfigureAwait on the awaited task
    dotnet_diagnostic.CA2007.severity = error
    #### Maintainability ####

    # VSTHRD002: Avoid problematic synchronous waits
    dotnet_diagnostic.VSTHRD002.severity = error
    # CA1501: Avoid excessive inheritance
    dotnet_diagnostic.CA1501.severity=warning

    # CA1502: Avoid excessive complexity
    dotnet_diagnostic.CA1502.severity=warning

    # CA1505: Avoid unmaintainable code
    dotnet_diagnostic.CA1505.severity=warning

    # CA1506: Avoid excessive class coupling
    dotnet_diagnostic.CA1506.severity=warning

    # CA1507: Use nameof in place of string
    dotnet_diagnostic.CA1507.severity=suggestion

    # CA1508: Avoid dead conditional code
    dotnet_diagnostic.CA1508.severity=suggestion

    # CA1509: Invalid entry in code metrics configuration file
    dotnet_diagnostic.CA1509.severity=suggestion

    #### Naming ####

    # CA1700: Do not name enum values 'Reserved'
    dotnet_diagnostic.CA1700.severity=warning

    # CA1707: Identifiers should not contain underscores
    dotnet_diagnostic.CA1707.severity=warning

    # CA1708: Identifiers should differ by more than case
    dotnet_diagnostic.CA1708.severity=error

    # CA1710: Identifiers should have correct suffix
    dotnet_diagnostic.CA1710.severity=suggestion

    # CA1711: Identifiers should not have incorrect suffix
    dotnet_diagnostic.CA1711.severity=warning

    # CA1712: Do not prefix enum values with type name
    dotnet_diagnostic.CA1712.severity=warning

    # CA1713: Events should not have before or after prefix
    dotnet_diagnostic.CA1713.severity=warning

    # CA1714: Flags enums should have plural names
    dotnet_diagnostic.CA1714.severity=error

    # CA1715: Identifiers should have correct prefix
    dotnet_diagnostic.CA1715.severity=error

    # CA1716: Identifiers should not match keywords
    dotnet_diagnostic.CA1716.severity=warning

    # CA1717: Only FlagsAttribute enums should have plural names
    dotnet_diagnostic.CA1717.severity=error

    # CA1720: Identifiers should not contain type names
    dotnet_diagnostic.CA1720.severity=warning

    # CA1721: Property names should not match get methods
    dotnet_diagnostic.CA1721.severity=warning

    # CA1724: Type names should not match namespaces
    dotnet_diagnostic.CA1724.severity=suggestion

    # CA1725: Parameter names should match base declaration
    dotnet_diagnostic.CA1725.severity=warning

    #### Performance ####

    # CA1802: Use Literals Where Appropriate
    dotnet_diagnostic.CA1802.severity=suggestion

    # CA1805: Do not initialize unnecessarily.
    dotnet_diagnostic.CA1805.severity=error

    # CA1806: Do not ignore method results
    dotnet_diagnostic.CA1806.severity=warning

    # CA1810: Initialize reference type static fields inline
    dotnet_diagnostic.CA1810.severity=error

    # CA1812: Avoid uninstantiated internal classes
    dotnet_diagnostic.CA1812.severity=suggestion

    # CA1813: Avoid unsealed attributes
    dotnet_diagnostic.CA1813.severity=suggestion

    # CA1814: Prefer jagged arrays over multidimensional
    dotnet_diagnostic.CA1814.severity=suggestion

    # CA1815: Override equals and operator equals on value types
    dotnet_diagnostic.CA1815.severity=warning

    # CA1819: Properties should not return arrays
    dotnet_diagnostic.CA1819.severity=warning

    # CA1820: Test for empty strings using string length
    dotnet_diagnostic.CA1820.severity=warning

    # CA1821: Remove empty finalizers
    dotnet_diagnostic.CA1821.severity=error

    # CA1822: Mark members as static
    dotnet_diagnostic.CA1822.severity=suggestion

    # CA1823: Avoid unused private fields
    dotnet_diagnostic.CA1823.severity=error

    # CA1824: Mark assemblies with NeutralResourcesLanguageAttribute
    dotnet_diagnostic.CA1824.severity=suggestion

    # CA1825: Avoid zero-length array allocations
    dotnet_diagnostic.CA1825.severity=suggestion

    # CA1826: Use property instead of Linq Enumerable method
    dotnet_diagnostic.CA1826.severity=suggestion

    # CA1827: Do not use Count/LongCount when Any can be used
    dotnet_diagnostic.CA1827.severity=suggestion

    # CA1829: Use Length/Count property instead of Enumerable.Count method
    dotnet_diagnostic.CA1829.severity=suggestion

    # CA1830: Prefer strongly-typed Append and Insert method overloads on StringBuilder.
    dotnet_diagnostic.CA1830.severity=suggestion

    # CA1831: Use AsSpan instead of Range-based indexers for string when appropriate
    dotnet_diagnostic.CA1831.severity=suggestion

    # CA1832: Use AsSpan or AsMemory instead of Range-based indexers for getting ReadOnlySpan or ReadOnlyMemory portion of an array
    dotnet_diagnostic.CA1832.severity=suggestion

    # CA1833: Use AsSpan or AsMemory instead of Range-based indexers for getting Span or Memory portion of an array
    dotnet_diagnostic.CA1833.severity=suggestion

    # CA1834: Use StringBuilder.Append(char) for single character strings
    dotnet_diagnostic.CA1834.severity=suggestion

    # CA1835: Prefer the memory-based overloads of ReadAsync/WriteAsync methods in stream-based classes
    dotnet_diagnostic.CA1835.severity=suggestion

    #CA1836: Prefer IsEmpty over Count when available
    dotnet_diagnostic.CA1836.severity=warning

    #CA1837: Use Environment.ProcessId instead of Process.GetCurrentProcess().Id
    dotnet_diagnostic.CA1837.severity=warning

    # CA1838: Avoid StringBuilder parameters for P/Invokes
    dotnet_diagnostic.CA1838.severity=warning

    #CA1841: Prefer Dictionary Contains methods
    dotnet_diagnostic.CA1841.severity=warning

    # CA1844: Provide memory-based overrides of async methods when subclassing 'Stream'
    dotnet_diagnostic.CA1844.severity=suggestion

    # CA1845: Use span-based 'string.Concat'
    dotnet_diagnostic.CA1845.severity=suggestion

    # CA1846: Prefer AsSpan over Substring
    dotnet_diagnostic.CA1846.severity=suggestion

    # CA1847: Use string.Contains(char) instead of string.Contains(string) with single character
    dotnet_diagnostic.CA1847.severity=suggestion

    # Add readonly modifier (IDE0044)
    dotnet_diagnostic.IDE0044.severity=warning

    # Use 'System.HashCode.Combine' (IDE0070)
    dotnet_diagnostic.IDE0070.severity=warning

    # SYSLIB0012: Type or member is obsolete
    dotnet_diagnostic.SYSLIB0012.severity = suggestion

    dotnet_diagnostic.RemoveUnnecessaryImportsFixable.severity=warning

    #### Reliability ####
    # CA2000: Dispose objects before losing scope
    dotnet_diagnostic.CA2000.severity=error

    # CA2002: Do not lock on objects with weak identity
    dotnet_diagnostic.CA2002.severity=error

    # CA2007: Do not directly await a Task
    dotnet_diagnostic.CA2007.severity=error

    # CA2008: Do not create tasks without passing a TaskScheduler
    dotnet_diagnostic.CA2008.severity=suggestion

    # CA2009: Do not call ToImmutableCollection on an ImmutableCollection value
    dotnet_diagnostic.CA2009.severity=error

    # CA2011: Do not assign property within its setter
    dotnet_diagnostic.CA2011.severity=error

    # CA2012: Use ValueTasks correctly
    dotnet_diagnostic.CA2012.severity=error

    # CA2013: Do not use ReferenceEquals with value types
    dotnet_diagnostic.CA2013.severity=suggestion

    # CA2014: Do not use stackalloc in loops
    dotnet_diagnostic.CA2014.severity=error

    # CA2015: Do not define finalizers for types derived from MemoryManager<T>
    dotnet_diagnostic.CA2015.severity=error

    # CA2016: Forward the CancellationToken parameter to methods that take one
    dotnet_diagnostic.CA2016.severity=suggestion

    #### Security Rules ####

    # CA2100: Review SQL queries for security vulnerabilities
    dotnet_diagnostic.CA2100.severity=error

    # CA2109: Review visible event handlers
    dotnet_diagnostic.CA2109.severity=warning

    # CA2119: Seal methods that satisfy private interfaces
    dotnet_diagnostic.CA2119.severity=warning

    # CA2153: Avoid handling Corrupted State Exceptions
    dotnet_diagnostic.CA2153.severity=warning

    # CA2300: Do not use insecure deserializer BinaryFormatter
    dotnet_diagnostic.CA2300.severity=warning

    # CA2301: Do not call BinaryFormatter.Deserialize without first setting BinaryFormatter.Binder
    dotnet_diagnostic.CA2301.severity=warning

    # CA2302: Ensure BinaryFormatter.Binder is set before calling BinaryFormatter.Deserialize
    dotnet_diagnostic.CA2302.severity=warning

    # CA2305: Do not use insecure deserializer LosFormatter
    dotnet_diagnostic.CA2305.severity=warning

    # CA2310: Do not use insecure deserializer NetDataContractSerializer
    dotnet_diagnostic.CA2310.severity=warning

    # CA2311: Do not deserialize without first setting NetDataContractSerializer.Binder
    dotnet_diagnostic.CA2311.severity=warning

    # CA2312: Ensure NetDataContractSerializer.Binder is set before deserializing
    dotnet_diagnostic.CA2312.severity=warning

    # CA2315: Do not use insecure deserializer ObjectStateFormatter
    dotnet_diagnostic.CA2315.severity=warning

    # CA2321: Do not deserialize with JavaScriptSerializer using a SimpleTypeResolver
    dotnet_diagnostic.CA2321.severity=warning

    # CA2322: Ensure JavaScriptSerializer is not initialized with SimpleTypeResolver before deserializing
    dotnet_diagnostic.CA2322.severity=warning

    # CA2326: Do not use TypeNameHandling values other than None
    dotnet_diagnostic.CA2326.severity=warning

    # CA2327: Do not use insecure JsonSerializerSettings
    dotnet_diagnostic.CA2327.severity=warning

    # CA2328: Ensure that JsonSerializerSettings are secure
    dotnet_diagnostic.CA2328.severity=warning

    # CA2329: Do not deserialize with JsonSerializer using an insecure configuration
    dotnet_diagnostic.CA2329.severity=warning

    # CA2330: Ensure that JsonSerializer has a secure configuration when deserializing
    dotnet_diagnostic.CA2330.severity=warning

    # CA2350: Ensure DataTable.ReadXml()'s input is trusted
    dotnet_diagnostic.CA2350.severity=warning

    # CA2351: Ensure DataSet.ReadXml()'s input is trusted
    dotnet_diagnostic.CA2351.severity=warning

    # CA2352: Unsafe DataSet or DataTable in serializable type can be vulnerable to remote code execution attacks
    dotnet_diagnostic.CA2352.severity=warning

    # CA2353: Unsafe DataSet or DataTable in serializable type
    dotnet_diagnostic.CA2353.severity=warning

    # CA2354: Unsafe DataSet or DataTable in deserialized object graph can be vulnerable to remote code execution attack
    dotnet_diagnostic.CA2354.severity=warning

    # CA2355: Unsafe DataSet or DataTable in deserialized object graph
    dotnet_diagnostic.CA2355.severity=warning

    # CA2356: Unsafe DataSet or DataTable type in web deserialized object graph
    dotnet_diagnostic.CA2356.severity=warning

    # CA2361: Ensure autogenerated class containing DataSet.ReadXml() is not used with untrusted data
    dotnet_diagnostic.CA2361.severity=warning

    # CA2362: Unsafe DataSet or DataTable in autogenerated serializable type can be vulnerable to remote code execution attacks
    dotnet_diagnostic.CA2362.severity=warning

    # CA3001: Review code for SQL injection vulnerabilities
    dotnet_diagnostic.CA3001.severity=warning

    # CA3002: Review code for XSS vulnerabilities
    dotnet_diagnostic.CA3002.severity=warning

    # CA3003: Review code for file path injection vulnerabilities
    dotnet_diagnostic.CA3003.severity=warning

    # CA3004: Review code for information disclosure vulnerabilities
    dotnet_diagnostic.CA3004.severity=warning

    # CA3005: Review code for LDAP injection vulnerabilities
    dotnet_diagnostic.CA3005.severity = none

    # CA3006: Review code for process command injection vulnerabilities
    dotnet_diagnostic.CA3006.severity = none

    # CA3007: Review code for open redirect vulnerabilities
    dotnet_diagnostic.CA3007.severity = none

    # CA3008: Review code for XPath injection vulnerabilities
    dotnet_diagnostic.CA3008.severity = none

    # CA3009: Review code for XML injection vulnerabilities
    dotnet_diagnostic.CA3009.severity = none

    # CA3010: Review code for XAML injection vulnerabilities
    dotnet_diagnostic.CA3010.severity = none

    # CA3011: Review code for DLL injection vulnerabilities
    dotnet_diagnostic.CA3011.severity = none

    # CA3012: Review code for regex injection vulnerabilities
    dotnet_diagnostic.CA3012.severity = none

    # CA3061: Do Not Add Schema By URL
    dotnet_diagnostic.CA3061.severity = warning

    # CA3075: Insecure DTD processing in XML
    dotnet_diagnostic.CA3075.severity = warning

    # CA3076: Insecure XSLT script processing.
    dotnet_diagnostic.CA3076.severity = warning

    # CA3077: Insecure Processing in API Design, XmlDocument and XmlTextReader
    dotnet_diagnostic.CA3077.severity = warning

    # CA3147: Mark Verb Handlers With Validate Antiforgery Token
    dotnet_diagnostic.CA3147.severity = warning

    # CA5350: Do Not Use Weak Cryptographic Algorithms
    dotnet_diagnostic.CA5350.severity = warning

    # CA5351: Do Not Use Broken Cryptographic Algorithms
    dotnet_diagnostic.CA5351.severity = warning

    # CA5358: Do Not Use Unsafe Cipher Modes
    dotnet_diagnostic.CA5358.severity = none

    # CA5359: Do Not Disable Certificate Validation
    dotnet_diagnostic.CA5359.severity = warning

    # CA5360: Do Not Call Dangerous Methods In Deserialization
    dotnet_diagnostic.CA5360.severity = warning

    # CA5361: Do Not Disable SChannel Use of Strong Crypto
    dotnet_diagnostic.CA5361.severity = warning

    # CA5362: Do Not Refer Self In Serializable Class
    dotnet_diagnostic.CA5362.severity = none

    # CA5363: Do Not Disable Request Validation
    dotnet_diagnostic.CA5363.severity = warning

    # CA5364: Do Not Use Deprecated Security Protocols
    dotnet_diagnostic.CA5364.severity = warning

    # CA5365: Do Not Disable HTTP Header Checking
    dotnet_diagnostic.CA5365.severity = warning

    # CA5366: Use XmlReader For DataSet Read Xml
    dotnet_diagnostic.CA5366.severity = warning

    # CA5367: Do Not Serialize Types With Pointer Fields
    dotnet_diagnostic.CA5367.severity = none

    # CA5368: Set ViewStateUserKey For Classes Derived From Page
    dotnet_diagnostic.CA5368.severity = warning

    # CA5369: Use XmlReader For Deserialize
    dotnet_diagnostic.CA5369.severity = warning

    # CA5370: Use XmlReader For Validating Reader
    dotnet_diagnostic.CA5370.severity = warning

    # CA5371: Use XmlReader For Schema Read
    dotnet_diagnostic.CA5371.severity = warning

    # CA5372: Use XmlReader For XPathDocument
    dotnet_diagnostic.CA5372.severity = warning

    # CA5373: Do not use obsolete key derivation function
    dotnet_diagnostic.CA5373.severity = warning

    # CA5374: Do Not Use XslTransform
    dotnet_diagnostic.CA5374.severity = warning

    # CA5375: Do Not Use Account Shared Access Signature
    dotnet_diagnostic.CA5375.severity = none

    # CA5376: Use SharedAccessProtocol HttpsOnly
    dotnet_diagnostic.CA5376.severity = warning

    # CA5377: Use Container Level Access Policy
    dotnet_diagnostic.CA5377.severity = warning

    # CA5378: Do not disable ServicePointManagerSecurityProtocols
    dotnet_diagnostic.CA5378.severity = warning

    # CA5379: Do Not Use Weak Key Derivation Function Algorithm
    dotnet_diagnostic.CA5379.severity = warning

    # CA5380: Do Not Add Certificates To Root Store
    dotnet_diagnostic.CA5380.severity = warning

    # CA5381: Ensure Certificates Are Not Added To Root Store
    dotnet_diagnostic.CA5381.severity = warning

    # CA5382: Use Secure Cookies In ASP.Net Core
    dotnet_diagnostic.CA5382.severity = warning

    # CA5383: Ensure Use Secure Cookies In ASP.Net Core
    dotnet_diagnostic.CA5383.severity = warning

    # CA5384: Do Not Use Digital Signature Algorithm (DSA)
    dotnet_diagnostic.CA5384.severity = warning

    # CA5385: Use Rivest–Shamir–Adleman (RSA) Algorithm With Sufficient Key Size
    dotnet_diagnostic.CA5385.severity = warning

    # CA5386: Avoid hardcoding SecurityProtocolType value
    dotnet_diagnostic.CA5386.severity = warning

    # CA5387: Do Not Use Weak Key Derivation Function With Insufficient Iteration Count
    dotnet_diagnostic.CA5387.severity = warning

    # CA5388: Ensure Sufficient Iteration Count When Using Weak Key Derivation Function
    dotnet_diagnostic.CA5388.severity = warning

    # CA5389: Do Not Add Archive Item's Path To The Target File System Path
    dotnet_diagnostic.CA5389.severity = suggestion

    # CA5390: Do Not Hard Code Encryption Key
    dotnet_diagnostic.CA5390.severity = error

    # CA5391: Use antiforgery tokens in ASP.NET Core MVC controllers
    dotnet_diagnostic.CA5391.severity = warning

    # CA5392: Use DefaultDllImportSearchPaths attribute for P/Invokes
    dotnet_diagnostic.CA5392.severity = warning

    # CA5393: Do not use unsafe DllImportSearchPath value
    dotnet_diagnostic.CA5393.severity = warning

    # CA5394: Do not use insecure randomness
    dotnet_diagnostic.CA5394.severity = warning

    # CA5395: Miss HttpVerb attribute for action methods
    dotnet_diagnostic.CA5395.severity = warning

    # CA5396: Set HttpOnly to true for HttpCookie
    dotnet_diagnostic.CA5396.severity = warning

    # CA5397: Do not use deprecated SslProtocols values
    dotnet_diagnostic.CA5397.severity = warning

    # CA5398: Avoid hardcoded SslProtocols values
    dotnet_diagnostic.CA5398.severity = warning

    # CA5399: Definitely disable HttpClient certificate revocation list check
    dotnet_diagnostic.CA5399.severity = warning

    # CA5400: Ensure HttpClient certificate revocation list check is not disabled
    dotnet_diagnostic.CA5400.severity = warning

    # CA5401: Do not use CreateEncryptor with non-default IV
    dotnet_diagnostic.CA5401.severity = suggestion

    # CA5402: Use CreateEncryptor with the default IV
    dotnet_diagnostic.CA5402.severity = warning

    # CA5403: Do not hard-code certificate
    dotnet_diagnostic.CA5403.severity = error

    #### Usage Rules ####
    # CA1801: Review unused parameters
    dotnet_diagnostic.CA1801.severity = warning

    # CA1816: Call GC.SuppressFinalize correctly
    dotnet_diagnostic.CA1816.severity=error

    # CA2200: Rethrow to preserve stack details
    dotnet_diagnostic.CA2200.severity=error

    # CA2201: Do not raise reserved exception types
    dotnet_diagnostic.CA2201.severity=error

    # CA2207: Initialize value type static fields inline
    dotnet_diagnostic.CA2207.severity=warning

    # CA2208: Instantiate argument exceptions correctly
    dotnet_diagnostic.CA2208.severity=error

    # CA2211: Non-constant fields should not be visible
    dotnet_diagnostic.CA2211.severity=error

    # CA2213: Disposable fields should be disposed
    dotnet_diagnostic.CA2213.severity=warning

    # CA2214: Do not call overridable methods in constructors
    dotnet_diagnostic.CA2214.severity=warning

    # CA2215: Dispose methods should call base class dispose
    dotnet_diagnostic.CA2215.severity=warning

    # CA2216: Disposable types should declare finalizer
    dotnet_diagnostic.CA2216.severity=warning

    # CA2217: Do not mark enums with FlagsAttribute
    dotnet_diagnostic.CA2216.severity=error

    # CA2218: Override GetHashCode on overriding Equals
    dotnet_diagnostic.CA2218.severity=warning

    # CA2219: Do not raise exceptions in exception clauses
    dotnet_diagnostic.CA2219.severity=error

    # CA2224: Override Equals on overloading operator equals
    dotnet_diagnostic.CA2224.severity=warning

    # CA2225: Operator overloads have named alternates
    dotnet_diagnostic.CA2225.severity=warning

    # CA2226: Operators should have symmetrical overloads
    dotnet_diagnostic.CA2226.severity=warning

    # CA2227: Collection properties should be read only
    dotnet_diagnostic.CA2227.severity=warning

    # CA2229: Implement serialization constructors
    dotnet_diagnostic.CA2229.severity=warning

    # CA2231: Overload operator equals on overriding ValueType.Equals
    dotnet_diagnostic.CA2231.severity=warning

    # CA2234: Pass System.Uri objects instead of strings
    dotnet_diagnostic.CA2234.severity=warning

    # CA2235: Mark all non-serializable fields
    dotnet_diagnostic.CA2235.severity=suggestion

    # CA2237: Mark ISerializable types with SerializableAttribute
    dotnet_diagnostic.CA2237.severity=warning

    # CA2241: Provide correct arguments to formatting methods
    dotnet_diagnostic.CA2241.severity=warning

    # CA2242: Test for NaN correctly
    dotnet_diagnostic.CA2242.severity=warning

    # CA2243: Attribute string literals should parse correctly
    dotnet_diagnostic.CA2243.severity=warning

    # CA2244: Do not duplicate indexed element initializations
    dotnet_diagnostic.CA2244.severity=warning

    # CA2245: Do not assign a property to itself
    dotnet_diagnostic.CA2245.severity=warning

    # CA2246: Do not assign a symbol and its member in the same statement
    dotnet_diagnostic.CA2246.severity=warning

    # CA2247: Argument passed to TaskCompletionSource constructor should be TaskCreationOptions enum instead of TaskContinuationOptions enum
    dotnet_diagnostic.CA2247.severity=warning

    # CA2248: Provide correct enum argument to Enum.HasFlag
    dotnet_diagnostic.CA2248.severity=warning

    # CA2249: Consider using String.Contains instead of String.IndexOf
    dotnet_diagnostic.CA2249.severity=warning

    # CA2250: Use ThrowIfCancellationRequested
    dotnet_diagnostic.CA2250.severity=warning

    # CA2251: Use String.Equals over String.Compare
    dotnet_diagnostic.CA2251.severity=warning

    #### Language Rules ####
    # this and Me preferences (IDE0003 and IDE0009)
    dotnet_diagnostic.IDE0003.severity=suggestion
    dotnet_diagnostic.IDE0009.severity=suggestion
    dotnet_style_qualification_for_field = true:suggestion

    # Simplify 'default' expression (IDE0034)
    dotnet_diagnostic.IDE0034.severity=suggestion

    # Order modifiers (IDE0036)
    dotnet_diagnostic.IDE0036.severity=warning
    csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async : warning

    # Add accessibility modifiers (IDE0040)
    dotnet_diagnostic.IDE0040.severity=error

    # Add readonly modifier (IDE0044)
    dotnet_diagnostic.IDE0044.severity=warning

    # Use language keywords instead of framework type names for type references (IDE0049)
    dotnet_diagnostic.IDE0049.severity=suggestion
    dotnet_style_predefined_type_for_locals_parameters_members = true:warning
    dotnet_style_predefined_type_for_member_access = true:warning

    # Convert anonymous type to tuple (IDE0050)
    dotnet_diagnostic.IDE0050.severity=suggestion

    # Use index operator (IDE0056)
    dotnet_diagnostic.IDE0056.severity=suggestion

    # Use range operator (IDE0057)
    dotnet_diagnostic.IDE0057.severity=suggestion

    # Make local function static (IDE0062)
    dotnet_diagnostic.IDE0062.severity=suggestion

    # Add missing cases to switch expression (IDE0072)
    dotnet_diagnostic.IDE0072.severity=suggestion

    # Simplify new expression (IDE0090)
    dotnet_diagnostic.IDE0090.severity=suggestion

    # ???
    dotnet_diagnostic.IDE0120.severity=suggestion

    # Modifier preferences
    dotnet_style_require_accessibility_modifiers = for_non_interface_members:warning

    # Make local function static (IDE0062)
    dotnet_diagnostic.IDE0062.severity=suggestion
    csharp_prefer_static_local_function = true : suggestion

    # Make struct fields writable (IDE0064)
    dotnet_diagnostic.IDE0064.severity=suggestion

    # Parentheses preferences (IDE0047 and IDE0048)
    dotnet_diagnostic.IDE0047.severity=warning
    dotnet_diagnostic.IDE0048.severity=warning

    # Add missing cases to switch statement (IDE0010)
    dotnet_diagnostic.IDE0010.severity=suggestion

    # Use object initializers (IDE0017)
    dotnet_diagnostic.IDE0017.severity=suggestion

    # Inline variable declaration (IDE0018)
    dotnet_diagnostic.IDE0018.severity=suggestion

    # Use collection initializers (IDE0028)
    dotnet_diagnostic.IDE0028.severity=suggestion

    # Use auto property (IDE0032)
    dotnet_diagnostic.IDE0032.severity=suggestion

    # Use explicitly provided tuple name (IDE0033)
    dotnet_diagnostic.IDE0033.severity=suggestion

    # Simplify 'default' expression (IDE0034)
    dotnet_diagnostic.IDE0034.severity=suggestion
    csharp_prefer_simple_default_expression = true : suggestion

    # Use inferred member name (IDE0037)
    dotnet_diagnostic.IDE0037.severity=suggestion

    # Use local function instead of lambda (IDE0039)
    dotnet_diagnostic.IDE0039.severity=suggestion

    # Deconstruct variable declaration (IDE0042)
    dotnet_diagnostic.IDE0042.severity=suggestion

    # Use conditional expression for assignment (IDE0045)
    dotnet_diagnostic.IDE0045.severity=suggestion

    # Use conditional expression for return (IDE0046)
    dotnet_diagnostic.IDE0046.severity=suggestion

    # Convert anonymous type to tuple (IDE0050)
    dotnet_diagnostic.IDE050.severity=suggestion

    # Use compound assignment (IDE0054 and IDE0074)
    dotnet_diagnostic.IDE0054.severity=suggestion
    dotnet_diagnostic.IDE0074.severity=suggestion

    # Simplify conditional expression (IDE0075)
    dotnet_diagnostic.IDE0075.severity=suggestion

    # Convert typeof to nameof (IDE0082)
    dotnet_diagnostic.IDE0082.severity=suggestion

    # Simplify new expression (IDE0090)
    dotnet_diagnostic.IDE0090.severity=suggestion


    # Use throw expression (IDE0016)
    dotnet_diagnostic.IDE0016.severity=warning

    # Use coalesce expression (IDE0029 and IDE0030)
    dotnet_diagnostic.IDE0029.severity=suggestion
    dotnet_diagnostic.IDE0030.severity=suggestion

    # Expression-level preferences
    dotnet_style_coalesce_expression = true:suggestion
    dotnet_style_collection_initializer = true:suggestion
    dotnet_style_explicit_tuple_names = true:suggestion
    dotnet_style_null_propagation = true:suggestion
    dotnet_style_object_initializer = true:suggestion
    dotnet_style_operator_placement_when_wrapping = beginning_of_line
    dotnet_style_prefer_auto_properties = true:suggestion
    dotnet_style_prefer_compound_assignment = true:suggestion
    dotnet_style_prefer_conditional_expression_over_assignment = true:suggestion
    dotnet_style_prefer_conditional_expression_over_return = true:suggestion
    dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
    dotnet_style_prefer_inferred_tuple_names = true:suggestion
    dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
    dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
    dotnet_style_prefer_simplified_interpolation = true:suggestion

    # Field preferences
    dotnet_style_readonly_field = true:warning

    # Parameter preferences
    dotnet_code_quality_unused_parameters = all:warning


    # Suppression preferences
    dotnet_remove_unnecessary_suppression_exclusions = none

    # Use null propagation (IDE0031)
    dotnet_diagnostic.IDE0031.severity=suggestion

    # Use is null check (IDE0041)
    dotnet_diagnostic.IDE0041.severity=suggestion

    # Use conditional delegate call (IDE1005)i
    dotnet_diagnostic.IDE1005.severity=suggestion

    # 'var' preferences (IDE0007 and IDE0008)
    dotnet_diagnostic.IDE0007.severity=warning
    dotnet_diagnostic.IDE0008.severity=warning

    # Use expression body for constructors (IDE0021)
    dotnet_diagnostic.IDE0021.severity=silent

    # Use expression body for methods (IDE0022)
    dotnet_diagnostic.IDE0022.severity=silent

    # Use expression body for operators (IDE0023 and IDE0024)
    dotnet_diagnostic.IDE0023.severity=warning
    dotnet_diagnostic.IDE0024.severity=silent

    # Use expression body for properties (IDE0025)
    dotnet_diagnostic.IDE0025.severity=warning

    # Use expression body for indexers (IDE0026)
    dotnet_diagnostic.IDE0026.severity=suggestion

    # Use expression body for accessors (IDE0027)
    dotnet_diagnostic.IDE0027.severity=suggestion

    # Use expression body for lambdas (IDE0053)
    dotnet_diagnostic.IDE0053.severity=suggestion

    # Use expression body for local functions (IDE0061)
    dotnet_diagnostic.IDE0061.severity=suggestion

    # Use pattern matching to avoid 'as' followed by a 'null' check (IDE0019)
    dotnet_diagnostic.IDE0019.severity=suggestion

    # Use pattern matching to avoid 'is' check followed by a cast (IDE0020)
    dotnet_diagnostic.IDE0020.severity=suggestion

    # Use switch expression (IDE0066)
    dotnet_diagnostic.IDE0066.severity=suggestion

    # Use pattern matching (IDE0078)
    dotnet_diagnostic.IDE0078.severity=suggestion

    # Use pattern matching (not operator) (IDE0083)
    dotnet_diagnostic.IDE0083.severity=suggestion

    # Use pattern matching (IsNot operator) (IDE0084)
    dotnet_diagnostic.IDE0084.severity=suggestion
    visual_basic_style_prefer_isnot_expression = true : suggestion

    # Add braces (IDE0011)
    dotnet_diagnostic.IDE0011.severity=error
    csharp_prefer_braces = true : error

    # Use simple 'using' statement (IDE0063)
    dotnet_diagnostic.IDE0063.severity=suggestion
    csharp_prefer_simple_using_statement = false : disabled

    # 'using' directive placement (IDE0065)
    dotnet_diagnostic.IDE0065.severity=warning
    csharp_using_directive_placement = outside_namespace : warning

    # Require file header (IDE0073)
    dotnet_diagnostic.IDE0073.severity=warning
    file_header_template = unset

    # Simplify name (IDE0001)
    dotnet_diagnostic.IDE0001.severity=warning

    # Simplify member access (IDE0002)
    dotnet_diagnostic.IDE0002.severity=silent

    # Remove unnecessary cast (IDE0004)
    dotnet_diagnostic.IDE0004.severity=warning

    # Remove unnecessary import (IDE0005)
    dotnet_diagnostic.IDE0005.severity=error
    dotnet_diagnostic.IDE0005_gen.severity=error

    # Remove unreachable code (IDE0035)
    dotnet_diagnostic.IDE0035.severity=warning

    # Remove unused private member (IDE0051)
    dotnet_diagnostic.IDE0051.severity=error

    # Remove unread private member (IDE0052)
    dotnet_diagnostic.IDE0052.severity=error

    # Remove unnecessary expression value (IDE0058)
    dotnet_diagnostic.IDE0058.severity=warning

    # Remove unnecessary value assignment (IDE0059)
    dotnet_diagnostic.IDE0059.severity=error

    # Remove unused parameter (IDE0060)
    dotnet_diagnostic.IDE0060.severity=error

    # Remove unnecessary suppression (IDE0079)
    dotnet_diagnostic.IDE0079.severity=error

    # Remove unnecessary suppression operator (IDE0080)
    dotnet_diagnostic.IDE0080.severity=suggestion

    # Remove ByVal (IDE0081)
    dotnet_diagnostic.IDE0080.severity=warning

    # Remove unnecessary equality operator (IDE0100)
    dotnet_diagnostic.IDE0100.severity=warning

    # Remove unnecessary discard (IDE0110)
    dotnet_diagnostic.IDE0110.severity=warning

    # Simplify object creation (IDE0140)
    dotnet_diagnostic.IDE0110.severity=suggestion
    visual_basic_style_prefer_simplified_object_creation = all : suggestion

    # IDE0055 (Fix formatting)
    dotnet_diagnostic.IDE0055.severity=suggestion

    # Organize usings
    dotnet_separate_import_directive_groups = false
    dotnet_sort_system_directives_first = true

    # IDE1006 (Naming rule violation)
    dotnet_diagnostic.IDE1006.severity=warning
    dotnet_naming_rule.public_members_must_be_capitalized.severity = warning
    dotnet_naming_rule.public_members_must_be_capitalized.style = first_word_upper_case_style
    dotnet_naming_rule.public_members_must_be_capitalized.symbols = public_symbols
    dotnet_naming_style.first_word_upper_case_style.capitalization = first_word_upper
    dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.interface.applicable_kinds = interface
    dotnet_naming_symbols.public_symbols.applicable_accessibilities = public
    dotnet_naming_symbols.public_symbols.applicable_kinds = property,method,field,event,delegate
    dotnet_naming_symbols.public_symbols.required_modifiers = readonly
    dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum

    #### Unnecessary Code Rules ####

    # Remove unnecessary expression value (IDE0058)
    dotnet_diagnostic.IDE0058.severity=suggestion


    #### Design Rules ####
    # CA1000: Do not declare static members on generic typesk
    dotnet_diagnostic.CA1000.severity=suggestion

    # CA1001: Types that own disposable fields should be disposable
    dotnet_diagnostic.CA1001.severity=error

    # CA1002: Do not expose generic lists
    dotnet_diagnostic.CA1002.severity=error

    # CA1003: Use generic event handler instances
    dotnet_diagnostic.CA1003.severity=warning

    # CA1005: Avoid excessive parameters on generic types
    dotnet_diagnostic.CA1005.severity=warning

    # CA1008: Enums should have zero value
    dotnet_diagnostic.CA1008.severity=error

    # CA1010: Collections should implement generic interface
    dotnet_diagnostic.CA1008.severity=warning

    # CA1012: Abstract types should not have public constructors
    dotnet_diagnostic.CA1012.severity=warning

    # CA1014: Mark assemblies with CLSCompliantAttribute
    dotnet_diagnostic.CA1012.severity=suggestion

    # CA1016: Mark assemblies with AssemblyVersionAttribute
    dotnet_diagnostic.CA1016.severity=error

    # CA1017: Mark assemblies with ComVisibleAttribute
    dotnet_diagnostic.CA1017.severity=suggestion

    # CA1018: Mark attributes with AttributeUsageAttribute
    dotnet_diagnostic.CA1018.severity=suggestion

    # CA1019: Define accessors for attribute arguments
    dotnet_diagnostic.CA1019.severity=suggestion

    # CA1021: Avoid out parameters
    dotnet_diagnostic.CA1021.severity=suggestion

    # CA1024: Use properties where appropriate
    dotnet_diagnostic.CA1024.severity=suggestion

    # CA1027: Mark enums with FlagsAttribute
    dotnet_diagnostic.CA1027.severity=error

    # CA1028: Enum storage should be Int32
    dotnet_diagnostic.CA1028.severity=error

    # CA1030: Use events where appropriate
    dotnet_diagnostic.CA1030.severity=suggestion

    # CA1031: Do not catch general exception types
    dotnet_diagnostic.CA1031.severity=error

    # CA1032: Implement standard exception constructors
    dotnet_diagnostic.CA1032.severity=suggestion

    # CA1033: Interface methods should be callable by child types
    dotnet_diagnostic.CA1033.severity=suggestion

    # CA1034: Nested types should not be visible
    dotnet_diagnostic.CA1034.severity=error

    # CA1036: Override methods on comparable types
    dotnet_diagnostic.CA1036.severity=suggestion

    # CA1040: Avoid empty interfaces
    dotnet_diagnostic.CA1040.severity=suggestion

    # CA1041: Provide ObsoleteAttribute message
    dotnet_diagnostic.CA1041.severity=warning

    # CA1043: Use integral or string argument for indexers
    dotnet_diagnostic.CA1043.severity=suggestion

    # CA1044: Properties should not be write only
    dotnet_diagnostic.CA1044.severity=error

    # CA1045: Do not pass types by reference
    dotnet_diagnostic.CA1045.severity=warning

    # CA1046: Do not overload operator equals on reference types
    dotnet_diagnostic.CA1046.severity=warning

    # CA1047: Do not declare protected members in sealed types
    dotnet_diagnostic.CA1047.severity=error

    # CA1050: Declare types in namespaces
    dotnet_diagnostic.CA1050.severity=warning

    # CA1051: Do not declare visible instance fields
    dotnet_diagnostic.CA1051.severity=error

    # CA1052: Static holder types should be Static or NotInheritable
    dotnet_diagnostic.CA1052.severity=warning

    # CA1053: Static holder types should not have default constructors
    dotnet_diagnostic.CA1053.severity=warning

    # CA1054: URI parameters should not be strings
    dotnet_diagnostic.CA1054.severity=warning

    # CA1055: URI return values should not be strings
    dotnet_diagnostic.CA1055.severity=warning

    # CA1056: URI properties should not be strings
    dotnet_diagnostic.CA1056.severity=warning

    # CA1058: Types should not extend certain base types
    dotnet_diagnostic.CA1058.severity=warning

    # CA1060: Move P/Invokes to NativeMethods class
    dotnet_diagnostic.CA1060.severity=warning

    # CA1061: Do not hide base class methods
    dotnet_diagnostic.CA1061.severity=warning

    # CA1062: Validate arguments of public methods
    dotnet_diagnostic.CA1062.severity=suggestion

    # CA1063: Implement IDisposable correctly
    dotnet_diagnostic.CA1063.severity=error

    # CA1064: Exceptions should be public
    dotnet_diagnostic.CA1064.severity=warning

    # CA1065: Do not raise exceptions in unexpected locations
    dotnet_diagnostic.CA1065.severity=warning

    # CA1066: Implement IEquatable when overriding Equals
    dotnet_diagnostic.CA1066.severity=warning

    # CA1067: Override Equals when implementing IEquatable
    dotnet_diagnostic.CA1067.severity=warning

    # CA1068: CancellationToken parameters must come last
    dotnet_diagnostic.CA1068.severity=warning

    # CA1069: Enums should not have duplicate values
    dotnet_diagnostic.CA1069.severity=error

    # CA1070: Do not declare event fields as virtual
    dotnet_diagnostic.CA1070.severity=warning

    #### Documentation Rules ####

    # CA1200: Avoid using cref tags with a prefix
    dotnet_diagnostic.CA1200.severity=suggestion

    #### Globalization Rules ####

    # CA1303: Do not pass literals as localized parameters
    dotnet_diagnostic.CA1303.severity=warning

    # CA1304: Specify CultureInfo
    dotnet_diagnostic.CA1304.severity=error

    # CA1305: Specify IFormatProvider
    dotnet_diagnostic.CA1305.severity=error

    # CA1307: Specify StringComparison for clarity
    dotnet_diagnostic.CA1307.severity=error

    # CA1308: Normalize strings to uppercase
    dotnet_diagnostic.CA1308.severity=warning

    # CA1309: Use ordinal StringComparison
    dotnet_diagnostic.CA1309.severity=warning

    # CA1310: Specify StringComparison for correctness
    dotnet_diagnostic.CA1310.severity=warning

    # CA2101: Specify marshaling for P/Invoke string arguments
    dotnet_diagnostic.CA2101.severity=warning

    #### SingleFile Rules ####

    # IL3000: Avoid using accessing Assembly file path when publishing as a single-file
    dotnet_diagnostic.IL3000.severity = error

    # IL3001: Avoid using accessing Assembly file path when publishing as a single-file
    dotnet_diagnostic.IL3001.severity = error

    # IL3002: Avoid calling members annotated with 'RequiresAssemblyFilesAttribute' when publishing as a single file.
    dotnet_diagnostic.IL3002.severity = error

    #### Miscellaneous Rules ####

    # Remove invalid global 'SuppressMessageAttribute' (IDE0076)
    dotnet_diagnostic.IDE0076.severity=suggestion

    # Avoid legacy format target in global 'SuppressMessageAttribute' (IDE0077)
    dotnet_diagnostic.IDE0077.severity=suggestion

    #### StyleCop Rules ####

    # A violation of this rule occurs when a compilation (project) contains one or more files which are parsed with the DocumentationMode set to None. This most frequently occurs when the project is configured to not produce an XML documentation file during the build.
    dotnet_diagnostic.SA0001.severity = warning

    # This rule reports cases where the StyleCop Analyzers settings file could not be loaded.
    dotnet_diagnostic.SA0001.severity = error

    # A field name in C# begins with an underscore.
    dotnet_diagnostic.SA1309.severity = warning

    # A Code Analysis SuppressMessage attribute does not include a justification.
    dotnet_diagnostic.SA1404.severity = none

    # SA1636: File header copyright text should match
    dotnet_diagnostic.SA1636.severity = suggestion

    #### Async Rules ####

    # ASYNC0001: Asynchronous method names should end with Async
    dotnet_diagnostic.ASYNC0001.severity = error

    # ASYNC0002: Non asynchronous method names should end with Async
    dotnet_diagnostic.ASYNC0002.severity = error

    # ASYNC0003: Avoid void returning asynchronous method
    dotnet_diagnostic.ASYNC0003.severity = warning

    # ASYNC0004: Use ConfigureAwait(false) on await expression
    dotnet_diagnostic.ASYNC0004.severity = error

    # CA1828: Do not use CountAsync/LongCountAsync when AnyAsync can be used
    dotnet_diagnostic.CA1828.severity=suggestion

    # MA0045: Do not use blocking call (make method async)
    dotnet_diagnostic.MA0045.severity = error
    dotnet_diagnostic.MA0045.severity = none

    # RCS1090: Call 'ConfigureAwait(false)'.
    dotnet_diagnostic.RCS1090.severity = error

    # RCS1210: Return completed task instead of returning null
    dotnet_diagnostic.RCS1210.severity = error

    # AsyncifyInvocation: Use Task Async
    dotnet_diagnostic.AsyncifyInvocation.severity = error

    # AsyncifyVariable: Use Task Async
    dotnet_diagnostic.AsyncifyVariable.severity = error

    # MA0022: Return Task.FromResult instead of returning null
    dotnet_diagnostic.MA0022.severity = error

    # RCS1210: Return Task.FromResult instead of returning null.
    dotnet_diagnostic.RCS1210.severity = error
    # VSTHRD111: Use ConfigureAwait(bool)
    dotnet_diagnostic.VSTHRD111.severity = error

    # VSTHRD114: Avoid returning a null Task
    dotnet_diagnostic.VSTHRD114.severity = error

    # ASYNC0001: Asynchronous method names should end with Async
    dotnet_diagnostic.ASYNC0001.severity = error

    # VSTHRD200: Use "Async" suffix for async methods
    dotnet_diagnostic.VSTHRD200.severity = error

    @@ -214,73 +1317,126 @@ dotnet_diagnostic.RCS1046.severity = er
    # VSTHRD200: Use "Async" suffix for async methods
    dotnet_diagnostic.VSTHRD200.severity = error

    # ASYNC0002: Non asynchronous method names should end with Async
    dotnet_diagnostic.ASYNC0002.severity = error

    # RCS1047: Non-asynchronous method name should not end with 'Async'.
    dotnet_diagnostic.RCS1047.severity = error

    # MA0040: Specify a cancellation token
    dotnet_diagnostic.MA0032.severity = error
    #### Class Rules ####

    # CLASS0001: Seal Class
    dotnet_diagnostic.CLASS0001.severity = warning

    # MA0040: Flow the cancellation token when available
    dotnet_diagnostic.MA0040.severity = error
    #### Enum Rules ####

    # MA0079: Use a cancellation token using .WithCancellation()
    dotnet_diagnostic.MA0079.severity = error
    # ENUM0001: Default switch label
    dotnet_diagnostic.ENUM0001.severity = warning

    # MA0080: Use a cancellation token using .WithCancellation()
    dotnet_diagnostic.MA0080.severity = error
    # ENUM0002: Merge switch sections
    dotnet_diagnostic.ENUM0002.severity = warning

    # C# files
    # ENUM0003: Populate switch
    dotnet_diagnostic.ENUM0003.severity = warning
    tab_width = 4
    dotnet_style_allow_statement_immediately_after_block_experimental = true:silent
    dotnet_style_namespace_match_folder = true:suggestion
    dotnet_style_allow_multiple_blank_lines_experimental = true:silent

    #### C# Coding Conventions ####
    [*.cs]
    # var preferences
    csharp_style_var_elsewhere = true : warning
    csharp_style_var_for_built_in_types = true : warning
    csharp_style_var_when_type_is_apparent = true : warning

    # Expression-bodied members
    csharp_style_expression_bodied_accessors = true : silent
    csharp_style_expression_bodied_constructors = false : silent
    csharp_style_expression_bodied_indexers = true : silent
    csharp_style_expression_bodied_lambdas = true : silent
    csharp_style_expression_bodied_local_functions = false : silent
    csharp_style_expression_bodied_methods = false : silent
    csharp_style_expression_bodied_operators = false : silent
    csharp_style_expression_bodied_properties = true : silent
    # Prefer "var" everywhere (Implicit and explicit types)
    csharp_style_var_elsewhere = true:suggestion
    csharp_style_var_for_built_in_types = true:suggestion
    csharp_style_var_when_type_is_apparent = true:warning

    # Expression-Bodied members
    csharp_style_expression_bodied_accessors = true:silent
    csharp_style_expression_bodied_constructors = false:silent
    csharp_style_expression_bodied_indexers = true:silent
    csharp_style_expression_bodied_lambdas = true:silent
    csharp_style_expression_bodied_local_functions = false:silent
    csharp_style_expression_bodied_methods = false:silent
    csharp_style_expression_bodied_operators = false:silent
    csharp_style_expression_bodied_properties = true:silent

    # Pattern matching preferences
    csharp_style_pattern_matching_over_as_with_null_check = true : suggestion
    csharp_style_pattern_matching_over_is_with_cast_check = true : suggestion
    csharp_style_prefer_switch_expression = true : suggestion
    csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
    csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
    csharp_style_prefer_not_pattern = true:suggestion
    csharp_style_prefer_pattern_matching = true:silent
    csharp_style_prefer_switch_expression = true:suggestion

    # Null-checking preferences
    csharp_style_conditional_delegate_call = true : suggestion
    csharp_style_conditional_delegate_call = true:warning

    # Modifier preferences
    csharp_prefer_static_local_function = true : suggestion
    csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async : warning
    csharp_prefer_static_local_function = true:suggestion
    csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion

    # Code-block preferences
    csharp_prefer_braces = true : warning
    csharp_prefer_simple_using_statement = true : suggestion
    csharp_prefer_braces = true:suggestion
    csharp_prefer_simple_using_statement = false:silent

    # Expression-level preferences
    csharp_prefer_simple_default_expression = true : suggestion
    csharp_style_deconstructed_variable_declaration = true : suggestion
    csharp_style_inlined_variable_declaration = true : suggestion
    csharp_style_pattern_local_over_anonymous_function = true : suggestion
    csharp_style_prefer_index_operator = true : suggestion
    csharp_style_prefer_range_operator = true : suggestion
    csharp_style_throw_expression = true : suggestion
    csharp_style_unused_value_assignment_preference = discard_variable : suggestion
    csharp_style_unused_value_expression_statement_preference = discard_variable : silent
    csharp_prefer_simple_default_expression = true:warning
    csharp_style_deconstructed_variable_declaration = true:warning
    csharp_style_implicit_object_creation_when_type_is_apparent = true:suggestion
    csharp_style_inlined_variable_declaration = true:suggestion
    csharp_style_pattern_local_over_anonymous_function = true:warning
    csharp_style_prefer_index_operator = true:suggestion
    csharp_style_prefer_range_operator = true:suggestion
    csharp_style_throw_expression = true:suggestion
    csharp_style_unused_value_assignment_preference = discard_variable:suggestion
    csharp_style_unused_value_expression_statement_preference = discard_variable:silent

    # 'using' directive preferences
    csharp_using_directive_placement = outside_namespace : suggestion
    csharp_using_directive_placement = outside_namespace:silent

    #### C# Formatting Rules ####

    # New line preferences
    csharp_new_line_before_catch = true
    csharp_new_line_before_else = true
    csharp_new_line_before_finally = true
    csharp_new_line_before_members_in_anonymous_types = true
    csharp_new_line_before_members_in_object_initializers = true
    csharp_new_line_before_open_brace = all
    csharp_new_line_between_query_expression_clauses = true

    # Indentation preferences
    csharp_indent_block_contents = true
    csharp_indent_braces = false
    csharp_indent_case_contents = true
    csharp_indent_case_contents_when_block = true
    csharp_indent_labels = one_less_than_current
    csharp_indent_switch_labels = true

    # Space preferences
    csharp_space_after_cast = false
    csharp_space_after_colon_in_inheritance_clause = true
    csharp_space_after_comma = true
    csharp_space_after_dot = false
    csharp_space_after_keywords_in_control_flow_statements = true
    csharp_space_after_semicolon_in_for_statement = true
    csharp_space_around_binary_operators = before_and_after
    csharp_space_around_declaration_statements = false
    csharp_space_before_colon_in_inheritance_clause = true
    csharp_space_before_comma = false
    csharp_space_before_dot = false
    csharp_space_before_open_square_brackets = false
    csharp_space_before_semicolon_in_for_statement = false
    csharp_space_between_empty_square_brackets = false
    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_name_and_open_parenthesis = false
    csharp_space_between_method_declaration_parameter_list_parentheses = false
    csharp_space_between_parentheses = false
    csharp_space_between_square_brackets = false

    # Wrapping preferences
    csharp_preserve_single_line_blocks = true
    csharp_preserve_single_line_statements = true

    # New line preferences
    csharp_new_line_before_catch = true
    csharp_new_line_before_else = true
    @@ -324,4 +1480,19 @@ csharp_space_between_square_brackets = false

    # Wrapping preferences
    csharp_preserve_single_line_blocks = true
    csharp_preserve_single_line_statements = true
    csharp_preserve_single_line_statements = true
    csharp_style_namespace_declarations = block_scoped:silent
    csharp_style_allow_embedded_statements_on_same_line_experimental = true:silent
    csharp_style_prefer_null_check_over_type_check = true:suggestion
    csharp_style_prefer_tuple_swap = true:suggestion
    csharp_style_prefer_local_over_anonymous_function = true:suggestion
    csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true:silent
    csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true:silent
    csharp_style_prefer_extended_property_pattern = true:suggestion
    dotnet_diagnostic.IDISP004.severity = error
    dotnet_diagnostic.IDISP006.severity = error
    dotnet_diagnostic.IDISP009.severity = error
    dotnet_diagnostic.IDISP012.severity = error
    dotnet_diagnostic.IDISP024.severity = error
    dotnet_diagnostic.IDE0063.severity = silent
    dotnet_diagnostic.IDE0130.severity = warning
  9. @RealDotNetDave RealDotNetDave revised this gist Jan 5, 2021. 1 changed file with 164 additions and 164 deletions.
    328 changes: 164 additions & 164 deletions .editorConfig
    Original file line number Diff line number Diff line change
    @@ -1,10 +1,20 @@
    # Suppress: EC116
    root = true

    [*]
    charset = utf-8-bom
    end_of_line = crlf
    indent_size = 4
    indent_style = tab
    insert_final_newline = true
    trim_trailing_whitespace = true
    file_header_template = unset

    [*.{cs,vb}]
    # Organize usings
    dotnet_separate_import_directive_groups = false
    dotnet_sort_system_directives_first = true
    file_header_template = unset

    # Public members must be capitalized (public_members_must_be_capitalized)
    dotnet_naming_rule.public_members_must_be_capitalized.symbols = public_symbols
    dotnet_naming_symbols.public_symbols.applicable_kinds = property,method,field,event,delegate
    @@ -22,7 +32,7 @@ dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.symbols = no
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.style = non_private_static_field_style

    dotnet_naming_symbols.non_private_static_fields.applicable_kinds = field
    dotnet_naming_symbols.non_private_static_fields.applicable_accessibilities = public, protected, internal, protected internal, private protected
    dotnet_naming_symbols.non_private_static_fields.applicable_accessibilities = public, protected, internal, protected internal
    dotnet_naming_symbols.non_private_static_fields.required_modifiers = static

    dotnet_naming_style.non_private_static_field_style.capitalization = pascal_case
    @@ -55,77 +65,177 @@ dotnet_naming_symbols.local_functions.applicable_kinds = lo

    dotnet_naming_style.local_function_style.capitalization = pascal_case

    dotnet_diagnostic.CS8618.severity = silent
    dotnet_diagnostic.SA1309.severity = none
    dotnet_diagnostic.SA1404.severity = none

    # C# files
    [*.cs]
    charset = utf-8-bom

    #### Core EditorConfig Options ####

    # Indentation and spacing
    indent_size = 4
    indent_style = space
    tab_width = 4

    # New line preferences
    end_of_line = crlf
    insert_final_newline = false
    dotnet_diagnostic.CS8618.severity = silent
    dotnet_diagnostic.SA1309.severity = none
    dotnet_diagnostic.SA1404.severity = none

    #### .NET Coding Conventions ####
    # SA1636: File header copyright text should match
    dotnet_diagnostic.SA1636.severity = silent

    # this. and Me. preferences
    dotnet_style_qualification_for_event = true : silent
    dotnet_style_qualification_for_field = true : silent
    dotnet_style_qualification_for_method = true : silent
    dotnet_style_qualification_for_property = true : silent
    dotnet_style_qualification_for_event = true : suggestion
    dotnet_style_qualification_for_field = true : suggestion
    dotnet_style_qualification_for_method = true : suggestion
    dotnet_style_qualification_for_property = true : suggestion

    # Language keywords vs BCL types preferences
    dotnet_style_predefined_type_for_locals_parameters_members = true : silent
    dotnet_style_predefined_type_for_member_access = true : silent
    dotnet_style_predefined_type_for_locals_parameters_members = true : silent
    dotnet_style_predefined_type_for_member_access = true : silent

    # Parentheses preferences
    dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity : suggestion
    dotnet_style_parentheses_in_other_binary_operators = always_for_clarity : suggestion
    dotnet_style_parentheses_in_other_operators = never_if_unnecessary : suggestion
    dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity : suggestion
    dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity : suggestion
    dotnet_style_parentheses_in_other_binary_operators = always_for_clarity : suggestion
    dotnet_style_parentheses_in_other_operators = never_if_unnecessary : suggestion
    dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity : suggestion

    # Modifier preferences
    dotnet_style_require_accessibility_modifiers = for_non_interface_members : warning
    dotnet_style_require_accessibility_modifiers = for_non_interface_members : warning

    # Expression-level preferences
    dotnet_style_collection_initializer = true : suggestion
    dotnet_style_coalesce_expression = true : suggestion
    dotnet_style_explicit_tuple_names = true : suggestion
    dotnet_style_null_propagation = true : suggestion
    dotnet_style_object_initializer = true : suggestion
    dotnet_style_operator_placement_when_wrapping = beginning_of_line
    dotnet_style_prefer_auto_properties = true : silent
    dotnet_style_prefer_compound_assignment = true : suggestion
    dotnet_style_prefer_conditional_expression_over_assignment = true : silent
    dotnet_style_prefer_conditional_expression_over_return = true : silent
    dotnet_style_prefer_inferred_anonymous_type_member_names = true : suggestion
    dotnet_style_prefer_inferred_tuple_names = true : suggestion
    dotnet_style_prefer_is_null_check_over_reference_equality_method = true : suggestion
    dotnet_style_prefer_simplified_boolean_expressions = true : suggestion
    dotnet_style_prefer_simplified_interpolation = true : suggestion
    dotnet_style_collection_initializer = true : suggestion
    dotnet_style_coalesce_expression = true : suggestion
    dotnet_style_explicit_tuple_names = true : suggestion
    dotnet_style_null_propagation = true : suggestion
    dotnet_style_object_initializer = true : suggestion
    dotnet_style_operator_placement_when_wrapping = beginning_of_line
    dotnet_style_prefer_auto_properties = true : silent
    dotnet_style_prefer_compound_assignment = true : suggestion
    dotnet_style_prefer_conditional_expression_over_assignment = true : silent
    dotnet_style_prefer_conditional_expression_over_return = true : silent
    dotnet_style_prefer_inferred_anonymous_type_member_names = true : suggestion
    dotnet_style_prefer_inferred_tuple_names = true : suggestion
    dotnet_style_prefer_is_null_check_over_reference_equality_method = true : suggestion
    dotnet_style_prefer_simplified_boolean_expressions = true : suggestion
    dotnet_style_prefer_simplified_interpolation = true : suggestion

    # Field preferences
    dotnet_style_readonly_field = true : warning
    dotnet_style_readonly_field = true : warning

    # Parameter preferences
    dotnet_code_quality_unused_parameters = all : suggestion
    dotnet_code_quality_unused_parameters = all : suggestion

    # Suppression preferences
    dotnet_remove_unnecessary_suppression_exclusions = none
    dotnet_remove_unnecessary_suppression_exclusions = none

    #### Naming styles ####
    dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning
    dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
    dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i

    dotnet_naming_rule.types_should_be_pascal_case.severity = warning
    dotnet_naming_rule.types_should_be_pascal_case.symbols = types
    dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case

    dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning
    dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
    dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case

    dotnet_naming_symbols.all_members.applicable_kinds = *

    dotnet_naming_style.pascal_case_style.capitalization = pascal_case

    # Symbol specifications

    dotnet_naming_symbols.interface.applicable_kinds = interface
    dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.interface.required_modifiers =

    dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
    dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.types.required_modifiers =

    dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
    dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.non_field_members.required_modifiers = *

    # Naming styles

    dotnet_naming_style.pascal_case.required_prefix =
    dotnet_naming_style.pascal_case.required_suffix =
    dotnet_naming_style.pascal_case.word_separator =
    dotnet_naming_style.pascal_case.capitalization = pascal_case

    dotnet_naming_style.begins_with_i.required_prefix = I
    dotnet_naming_style.begins_with_i.required_suffix =
    dotnet_naming_style.begins_with_i.word_separator =
    dotnet_naming_style.begins_with_i.capitalization = pascal_case

    #Diagnostics
    #------------------------------------------------
    #Turn off checking generated code
    dotnet_diagnostic.CA1822.severity = none

    #Async
    # ASYNC0004: Use ConfigureAwait(false) on await expression
    dotnet_diagnostic.ASYNC0004.severity = error

    # MA0004: Use .ConfigureAwait(false)
    dotnet_diagnostic.MA0004.severity = error

    # RCS1090: Call 'ConfigureAwait(false)'.
    dotnet_diagnostic.RCS1090.severity = error

    # VSTHRD111: Use ConfigureAwait(bool)
    dotnet_diagnostic.VSTHRD111.severity = error

    # CA2007: Consider calling ConfigureAwait on the awaited task
    dotnet_diagnostic.CA2007.severity = error

    # VSTHRD002: Avoid problematic synchronous waits
    dotnet_diagnostic.VSTHRD002.severity = error

    # MA0045: Do not use blocking call (make method async)
    dotnet_diagnostic.MA0045.severity = error

    # AsyncifyInvocation: Use Task Async
    dotnet_diagnostic.AsyncifyInvocation.severity = error

    # AsyncifyVariable: Use Task Async
    dotnet_diagnostic.AsyncifyVariable.severity = error

    # MA0022: Return Task.FromResult instead of returning null
    dotnet_diagnostic.MA0022.severity = error

    # RCS1210: Return Task.FromResult instead of returning null.
    dotnet_diagnostic.RCS1210.severity = error

    # VSTHRD114: Avoid returning a null Task
    dotnet_diagnostic.VSTHRD114.severity = error

    # ASYNC0001: Asynchronous method names should end with Async
    dotnet_diagnostic.ASYNC0001.severity = error

    # VSTHRD200: Use "Async" suffix for async methods
    dotnet_diagnostic.VSTHRD200.severity = error

    #RCS1046: Asynchronous method name should end with 'Async'.
    dotnet_diagnostic.RCS1046.severity = error

    # VSTHRD200: Use "Async" suffix for async methods
    dotnet_diagnostic.VSTHRD200.severity = error

    # ASYNC0002: Non asynchronous method names should end with Async
    dotnet_diagnostic.ASYNC0002.severity = error

    # RCS1047: Non-asynchronous method name should not end with 'Async'.
    dotnet_diagnostic.RCS1047.severity = error

    # MA0040: Specify a cancellation token
    dotnet_diagnostic.MA0032.severity = error

    # MA0040: Flow the cancellation token when available
    dotnet_diagnostic.MA0040.severity = error

    # MA0079: Use a cancellation token using .WithCancellation()
    dotnet_diagnostic.MA0079.severity = error

    #### C# Coding Conventions ####
    # MA0080: Use a cancellation token using .WithCancellation()
    dotnet_diagnostic.MA0080.severity = error

    # C# files
    [*.cs]
    # var preferences
    csharp_style_var_elsewhere = false : silent
    csharp_style_var_elsewhere = true : warning
    csharp_style_var_for_built_in_types = true : warning
    csharp_style_var_when_type_is_apparent = true : warning

    @@ -149,7 +259,7 @@ csharp_style_conditional_delegate_call = true

    # Modifier preferences
    csharp_prefer_static_local_function = true : suggestion
    csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async : suggestion
    csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async : warning

    # Code-block preferences
    csharp_prefer_braces = true : warning
    @@ -214,114 +324,4 @@ csharp_space_between_square_brackets = false

    # Wrapping preferences
    csharp_preserve_single_line_blocks = true
    csharp_preserve_single_line_statements = true

    #### Naming styles ####
    dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning
    dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
    dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i

    dotnet_naming_rule.types_should_be_pascal_case.severity = warning
    dotnet_naming_rule.types_should_be_pascal_case.symbols = types
    dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case

    dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning
    dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
    dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case

    dotnet_naming_symbols.all_members.applicable_kinds = *

    dotnet_naming_style.pascal_case_style.capitalization = pascal_case

    # Symbol specifications

    dotnet_naming_symbols.interface.applicable_kinds = interface
    dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.interface.required_modifiers =

    dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
    dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.types.required_modifiers =

    dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
    dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.non_field_members.required_modifiers =*

    # Naming styles

    dotnet_naming_style.pascal_case.required_prefix =
    dotnet_naming_style.pascal_case.required_suffix =
    dotnet_naming_style.pascal_case.word_separator =
    dotnet_naming_style.pascal_case.capitalization = pascal_case

    dotnet_naming_style.begins_with_i.required_prefix = I
    dotnet_naming_style.begins_with_i.required_suffix =
    dotnet_naming_style.begins_with_i.word_separator =
    dotnet_naming_style.begins_with_i.capitalization = pascal_case

    #Async
    # ASYNC0004: Use ConfigureAwait(false) on await expression
    dotnet_diagnostic.ASYNC0004.severity = error

    # MA0004: Use .ConfigureAwait(false)
    dotnet_diagnostic.MA0004.severity = error

    # RCS1090: Call 'ConfigureAwait(false)'.
    dotnet_diagnostic.RCS1090.severity = error

    # VSTHRD111: Use ConfigureAwait(bool)
    dotnet_diagnostic.VSTHRD111.severity = error

    # CA2007: Consider calling ConfigureAwait on the awaited task
    dotnet_diagnostic.CA2007.severity = error

    # VSTHRD002: Avoid problematic synchronous waits
    dotnet_diagnostic.VSTHRD002.severity = error

    # MA0045: Do not use blocking call (make method async)
    dotnet_diagnostic.MA0045.severity = error

    # AsyncifyInvocation: Use Task Async
    dotnet_diagnostic.AsyncifyInvocation.severity = error

    # AsyncifyVariable: Use Task Async
    dotnet_diagnostic.AsyncifyVariable.severity = error

    # MA0022: Return Task.FromResult instead of returning null
    dotnet_diagnostic.MA0022.severity = error

    # RCS1210: Return Task.FromResult instead of returning null.
    dotnet_diagnostic.RCS1210.severity = error

    # VSTHRD114: Avoid returning a null Task
    dotnet_diagnostic.VSTHRD114.severity = error

    # ASYNC0001: Asynchronous method names should end with Async
    dotnet_diagnostic.ASYNC0001.severity = error

    # VSTHRD200: Use "Async" suffix for async methods
    dotnet_diagnostic.VSTHRD200.severity = error

    #RCS1046: Asynchronous method name should end with 'Async'.
    dotnet_diagnostic.RCS1046.severity = error

    # VSTHRD200: Use "Async" suffix for async methods
    dotnet_diagnostic.VSTHRD200.severity = error

    # ASYNC0002: Non asynchronous method names should end with Async
    dotnet_diagnostic.ASYNC0002.severity = error

    # RCS1047: Non-asynchronous method name should not end with 'Async'.
    dotnet_diagnostic.RCS1047.severity = error

    # MA0040: Specify a cancellation token
    dotnet_diagnostic.MA0032.severity = error

    # MA0040: Flow the cancellation token when available
    dotnet_diagnostic.MA0040.severity = error

    # MA0079: Use a cancellation token using .WithCancellation()
    dotnet_diagnostic.MA0079.severity = error

    # MA0080: Use a cancellation token using .WithCancellation()
    dotnet_diagnostic.MA0080.severity = error
    csharp_preserve_single_line_statements = true
  10. @RealDotNetDave RealDotNetDave created this gist Dec 22, 2020.
    327 changes: 327 additions & 0 deletions .editorConfig
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,327 @@
    root = true

    [*.{cs,vb}]
    # Organize usings
    dotnet_separate_import_directive_groups = false
    dotnet_sort_system_directives_first = true
    file_header_template = unset
    # Public members must be capitalized (public_members_must_be_capitalized)
    dotnet_naming_rule.public_members_must_be_capitalized.symbols = public_symbols
    dotnet_naming_symbols.public_symbols.applicable_kinds = property,method,field,event,delegate
    dotnet_naming_symbols.public_symbols.applicable_accessibilities = public
    dotnet_naming_symbols.public_symbols.required_modifiers = readonly

    dotnet_naming_rule.public_members_must_be_capitalized.style = first_word_upper_case_style
    dotnet_naming_style.first_word_upper_case_style.capitalization = first_word_upper

    dotnet_naming_rule.public_members_must_be_capitalized.severity = warning

    # Non-private static fields are PascalCase
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.severity = warning
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.symbols = non_private_static_fields
    dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.style = non_private_static_field_style

    dotnet_naming_symbols.non_private_static_fields.applicable_kinds = field
    dotnet_naming_symbols.non_private_static_fields.applicable_accessibilities = public, protected, internal, protected internal, private protected
    dotnet_naming_symbols.non_private_static_fields.required_modifiers = static

    dotnet_naming_style.non_private_static_field_style.capitalization = pascal_case

    # Constants are PascalCase
    dotnet_naming_rule.constants_should_be_pascal_case.severity = warning
    dotnet_naming_rule.constants_should_be_pascal_case.symbols = constants
    dotnet_naming_rule.constants_should_be_pascal_case.style = constant_style

    dotnet_naming_symbols.constants.applicable_kinds = field, local
    dotnet_naming_symbols.constants.required_modifiers = const

    dotnet_naming_style.constant_style.capitalization = pascal_case

    # Locals and parameters are camelCase
    dotnet_naming_rule.locals_should_be_camel_case.severity = warning
    dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters
    dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style

    dotnet_naming_symbols.locals_and_parameters.applicable_kinds = parameter, local

    dotnet_naming_style.camel_case_style.capitalization = camel_case

    # Local functions are PascalCase
    dotnet_naming_rule.local_functions_should_be_pascal_case.severity = warning
    dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = local_functions
    dotnet_naming_rule.local_functions_should_be_pascal_case.style = local_function_style

    dotnet_naming_symbols.local_functions.applicable_kinds = local_function

    dotnet_naming_style.local_function_style.capitalization = pascal_case

    dotnet_diagnostic.CS8618.severity = silent
    dotnet_diagnostic.SA1309.severity = none
    dotnet_diagnostic.SA1404.severity = none

    # C# files
    [*.cs]
    charset = utf-8-bom

    #### Core EditorConfig Options ####

    # Indentation and spacing
    indent_size = 4
    indent_style = space
    tab_width = 4

    # New line preferences
    end_of_line = crlf
    insert_final_newline = false

    #### .NET Coding Conventions ####

    # this. and Me. preferences
    dotnet_style_qualification_for_event = true : silent
    dotnet_style_qualification_for_field = true : silent
    dotnet_style_qualification_for_method = true : silent
    dotnet_style_qualification_for_property = true : silent

    # Language keywords vs BCL types preferences
    dotnet_style_predefined_type_for_locals_parameters_members = true : silent
    dotnet_style_predefined_type_for_member_access = true : silent

    # Parentheses preferences
    dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity : suggestion
    dotnet_style_parentheses_in_other_binary_operators = always_for_clarity : suggestion
    dotnet_style_parentheses_in_other_operators = never_if_unnecessary : suggestion
    dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity : suggestion

    # Modifier preferences
    dotnet_style_require_accessibility_modifiers = for_non_interface_members : warning

    # Expression-level preferences
    dotnet_style_collection_initializer = true : suggestion
    dotnet_style_coalesce_expression = true : suggestion
    dotnet_style_explicit_tuple_names = true : suggestion
    dotnet_style_null_propagation = true : suggestion
    dotnet_style_object_initializer = true : suggestion
    dotnet_style_operator_placement_when_wrapping = beginning_of_line
    dotnet_style_prefer_auto_properties = true : silent
    dotnet_style_prefer_compound_assignment = true : suggestion
    dotnet_style_prefer_conditional_expression_over_assignment = true : silent
    dotnet_style_prefer_conditional_expression_over_return = true : silent
    dotnet_style_prefer_inferred_anonymous_type_member_names = true : suggestion
    dotnet_style_prefer_inferred_tuple_names = true : suggestion
    dotnet_style_prefer_is_null_check_over_reference_equality_method = true : suggestion
    dotnet_style_prefer_simplified_boolean_expressions = true : suggestion
    dotnet_style_prefer_simplified_interpolation = true : suggestion

    # Field preferences
    dotnet_style_readonly_field = true : warning

    # Parameter preferences
    dotnet_code_quality_unused_parameters = all : suggestion

    # Suppression preferences
    dotnet_remove_unnecessary_suppression_exclusions = none


    #### C# Coding Conventions ####

    # var preferences
    csharp_style_var_elsewhere = false : silent
    csharp_style_var_for_built_in_types = true : warning
    csharp_style_var_when_type_is_apparent = true : warning

    # Expression-bodied members
    csharp_style_expression_bodied_accessors = true : silent
    csharp_style_expression_bodied_constructors = false : silent
    csharp_style_expression_bodied_indexers = true : silent
    csharp_style_expression_bodied_lambdas = true : silent
    csharp_style_expression_bodied_local_functions = false : silent
    csharp_style_expression_bodied_methods = false : silent
    csharp_style_expression_bodied_operators = false : silent
    csharp_style_expression_bodied_properties = true : silent

    # Pattern matching preferences
    csharp_style_pattern_matching_over_as_with_null_check = true : suggestion
    csharp_style_pattern_matching_over_is_with_cast_check = true : suggestion
    csharp_style_prefer_switch_expression = true : suggestion

    # Null-checking preferences
    csharp_style_conditional_delegate_call = true : suggestion

    # Modifier preferences
    csharp_prefer_static_local_function = true : suggestion
    csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async : suggestion

    # Code-block preferences
    csharp_prefer_braces = true : warning
    csharp_prefer_simple_using_statement = true : suggestion

    # Expression-level preferences
    csharp_prefer_simple_default_expression = true : suggestion
    csharp_style_deconstructed_variable_declaration = true : suggestion
    csharp_style_inlined_variable_declaration = true : suggestion
    csharp_style_pattern_local_over_anonymous_function = true : suggestion
    csharp_style_prefer_index_operator = true : suggestion
    csharp_style_prefer_range_operator = true : suggestion
    csharp_style_throw_expression = true : suggestion
    csharp_style_unused_value_assignment_preference = discard_variable : suggestion
    csharp_style_unused_value_expression_statement_preference = discard_variable : silent

    # 'using' directive preferences
    csharp_using_directive_placement = outside_namespace : suggestion

    #### C# Formatting Rules ####

    # New line preferences
    csharp_new_line_before_catch = true
    csharp_new_line_before_else = true
    csharp_new_line_before_finally = true
    csharp_new_line_before_members_in_anonymous_types = true
    csharp_new_line_before_members_in_object_initializers = true
    csharp_new_line_before_open_brace = all
    csharp_new_line_between_query_expression_clauses = true

    # Indentation preferences
    csharp_indent_block_contents = true
    csharp_indent_braces = false
    csharp_indent_case_contents = true
    csharp_indent_case_contents_when_block = true
    csharp_indent_labels = one_less_than_current
    csharp_indent_switch_labels = true

    # Space preferences
    csharp_space_after_cast = false
    csharp_space_after_colon_in_inheritance_clause = true
    csharp_space_after_comma = true
    csharp_space_after_dot = false
    csharp_space_after_keywords_in_control_flow_statements = true
    csharp_space_after_semicolon_in_for_statement = true
    csharp_space_around_binary_operators = before_and_after
    csharp_space_around_declaration_statements = false
    csharp_space_before_colon_in_inheritance_clause = true
    csharp_space_before_comma = false
    csharp_space_before_dot = false
    csharp_space_before_open_square_brackets = false
    csharp_space_before_semicolon_in_for_statement = false
    csharp_space_between_empty_square_brackets = false
    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_name_and_open_parenthesis = false
    csharp_space_between_method_declaration_parameter_list_parentheses = false
    csharp_space_between_parentheses = expressions
    csharp_space_between_square_brackets = false

    # Wrapping preferences
    csharp_preserve_single_line_blocks = true
    csharp_preserve_single_line_statements = true

    #### Naming styles ####
    dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning
    dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
    dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i

    dotnet_naming_rule.types_should_be_pascal_case.severity = warning
    dotnet_naming_rule.types_should_be_pascal_case.symbols = types
    dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case

    dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning
    dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
    dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case

    dotnet_naming_symbols.all_members.applicable_kinds = *

    dotnet_naming_style.pascal_case_style.capitalization = pascal_case

    # Symbol specifications

    dotnet_naming_symbols.interface.applicable_kinds = interface
    dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.interface.required_modifiers =

    dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
    dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.types.required_modifiers =

    dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
    dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
    dotnet_naming_symbols.non_field_members.required_modifiers =*

    # Naming styles

    dotnet_naming_style.pascal_case.required_prefix =
    dotnet_naming_style.pascal_case.required_suffix =
    dotnet_naming_style.pascal_case.word_separator =
    dotnet_naming_style.pascal_case.capitalization = pascal_case

    dotnet_naming_style.begins_with_i.required_prefix = I
    dotnet_naming_style.begins_with_i.required_suffix =
    dotnet_naming_style.begins_with_i.word_separator =
    dotnet_naming_style.begins_with_i.capitalization = pascal_case

    #Async
    # ASYNC0004: Use ConfigureAwait(false) on await expression
    dotnet_diagnostic.ASYNC0004.severity = error

    # MA0004: Use .ConfigureAwait(false)
    dotnet_diagnostic.MA0004.severity = error

    # RCS1090: Call 'ConfigureAwait(false)'.
    dotnet_diagnostic.RCS1090.severity = error

    # VSTHRD111: Use ConfigureAwait(bool)
    dotnet_diagnostic.VSTHRD111.severity = error

    # CA2007: Consider calling ConfigureAwait on the awaited task
    dotnet_diagnostic.CA2007.severity = error

    # VSTHRD002: Avoid problematic synchronous waits
    dotnet_diagnostic.VSTHRD002.severity = error

    # MA0045: Do not use blocking call (make method async)
    dotnet_diagnostic.MA0045.severity = error

    # AsyncifyInvocation: Use Task Async
    dotnet_diagnostic.AsyncifyInvocation.severity = error

    # AsyncifyVariable: Use Task Async
    dotnet_diagnostic.AsyncifyVariable.severity = error

    # MA0022: Return Task.FromResult instead of returning null
    dotnet_diagnostic.MA0022.severity = error

    # RCS1210: Return Task.FromResult instead of returning null.
    dotnet_diagnostic.RCS1210.severity = error

    # VSTHRD114: Avoid returning a null Task
    dotnet_diagnostic.VSTHRD114.severity = error

    # ASYNC0001: Asynchronous method names should end with Async
    dotnet_diagnostic.ASYNC0001.severity = error

    # VSTHRD200: Use "Async" suffix for async methods
    dotnet_diagnostic.VSTHRD200.severity = error

    #RCS1046: Asynchronous method name should end with 'Async'.
    dotnet_diagnostic.RCS1046.severity = error

    # VSTHRD200: Use "Async" suffix for async methods
    dotnet_diagnostic.VSTHRD200.severity = error

    # ASYNC0002: Non asynchronous method names should end with Async
    dotnet_diagnostic.ASYNC0002.severity = error

    # RCS1047: Non-asynchronous method name should not end with 'Async'.
    dotnet_diagnostic.RCS1047.severity = error

    # MA0040: Specify a cancellation token
    dotnet_diagnostic.MA0032.severity = error

    # MA0040: Flow the cancellation token when available
    dotnet_diagnostic.MA0040.severity = error

    # MA0079: Use a cancellation token using .WithCancellation()
    dotnet_diagnostic.MA0079.severity = error

    # MA0080: Use a cancellation token using .WithCancellation()
    dotnet_diagnostic.MA0080.severity = error