Skip to content

Instantly share code, notes, and snippets.

@kurnakovv
Last active July 29, 2026 12:35
Show Gist options
  • Select an option

  • Save kurnakovv/af310334b6db72b320f112fd8ca2cd16 to your computer and use it in GitHub Desktop.

Select an option

Save kurnakovv/af310334b6db72b320f112fd8ca2cd16 to your computer and use it in GitHub Desktop.
Favorite JetBrains ReSharper InspectCode rules in .editorconfig
[*]
##
## JetBrains ReSharper InspectCode
##
# All rules here https://www.jetbrains.com/help/resharper/Reference__Code_Inspections_CSHARP.html
# + - good
# - - bad
# d - duplicate
# s - strange
# + - - good for me, but not for company
# ? need to check
# Method invocation is skipped [InvocationIsSkipped] | https://www.jetbrains.com/help/resharper/InvocationIsSkipped.html
resharper_invocation_is_skipped_highlighting = error # + d
# Part of the code cannot be parsed [NonParsableElement] | https://www.jetbrains.com/help/resharper/NonParsableElement.html
resharper_non_parsable_element_highlighting = none # + s
# Access to a static member of a type via a derived type [AccessToStaticMemberViaDerivedType] | https://www.jetbrains.com/help/resharper/AccessToStaticMemberViaDerivedType.html
resharper_access_to_static_member_via_derived_type_highlighting = error # + d
# Actual number of bytes read by 'Stream.Read()' is ignored [StreamReadReturnValueIgnored] | https://www.jetbrains.com/help/resharper/StreamReadReturnValueIgnored.html
resharper_stream_read_return_value_ignored_highlighting = error # +
# Add explicit 'return' or 'continue' before local functions [SeparateLocalFunctionsWithJumpStatement] | https://www.jetbrains.com/help/resharper/SeparateLocalFunctionsWithJumpStatement.html
resharper_separate_local_functions_with_jump_statement_highlighting = error # +
# Annotation duplicate in hierarchy [AnnotationRedundancyInHierarchy] | https://www.jetbrains.com/help/resharper/AnnotationRedundancyInHierarchy.html
resharper_annotation_redundancy_in_hierarchy_highlighting = error # +
# Auto-property can be made get-only (non-private accessibility) [AutoPropertyCanBeMadeGetOnly.Global] | https://www.jetbrains.com/help/resharper/AutoPropertyCanBeMadeGetOnly.Global.html
resharper_auto_property_can_be_made_get_only_global_highlighting = none # rejected
# Auto-property can be made get-only (private accessibility) [AutoPropertyCanBeMadeGetOnly.Local] | https://www.jetbrains.com/help/resharper/AutoPropertyCanBeMadeGetOnly.Local.html
resharper_auto_property_can_be_made_get_only_local_highlighting = error
# Base member has 'params' parameter, but the overrider does not have it [BaseMemberHasParams] | https://www.jetbrains.com/help/resharper/BaseMemberHasParams.html
resharper_base_member_has_params_highlighting = error # +
# Can simplify 'Contains' before 'Add' [CanSimplifySetAddingWithSingleCall] | https://www.jetbrains.com/help/resharper/CanSimplifySetAddingWithSingleCall.html
resharper_can_simplify_set_adding_with_single_call_highlighting = error
# Cast expression can be replaced with explicit type arguments [CanReplaceCastWithTypeArgument] | https://www.jetbrains.com/help/resharper/CanReplaceCastWithTypeArgument.html
resharper_can_replace_cast_with_type_argument_highlighting = error # +
# Cast expression can be replaced with explicit variable type [CanReplaceCastWithVariableType] | https://www.jetbrains.com/help/resharper/CanReplaceCastWithVariableType.html
resharper_can_replace_cast_with_variable_type_highlighting = error
# Cast expression can be replaced with lambda return type [CanReplaceCastWithLambdaReturnType] | https://www.jetbrains.com/help/resharper/CanReplaceCastWithLambdaReturnType.html
resharper_can_replace_cast_with_lambda_return_type_highlighting = none # -
# Cast expression can be replaced with simplified type arguments [CanReplaceCastWithShorterTypeArgument] | https://www.jetbrains.com/help/resharper/CanReplaceCastWithShorterTypeArgument.html
resharper_can_replace_cast_with_shorter_type_argument_highlighting = error
# Change lock field type to 'System.Threading.Lock' [ChangeFieldTypeToSystemThreadingLock] | https://www.jetbrains.com/help/resharper/ChangeFieldTypeToSystemThreadingLock.html
resharper_change_field_type_to_system_threading_lock_highlighting = error # +
# Check for reference equality instead [CheckForReferenceEqualityInstead.1] | https://www.jetbrains.com/help/resharper/CheckForReferenceEqualityInstead.1.html
resharper_check_for_reference_equality_instead_1_highlighting = error # +
# Check for reference equality instead [CheckForReferenceEqualityInstead.3] | https://www.jetbrains.com/help/resharper/CheckForReferenceEqualityInstead.3.html
resharper_check_for_reference_equality_instead_3_highlighting = error # +
# Check for reference equality instead [CheckForReferenceEqualityInstead.2] | https://www.jetbrains.com/help/resharper/CheckForReferenceEqualityInstead.2.html
resharper_check_for_reference_equality_instead_2_highlighting = error # +
# Check for reference equality instead [CheckForReferenceEqualityInstead.4] | https://www.jetbrains.com/help/resharper/CheckForReferenceEqualityInstead.4.html
resharper_check_for_reference_equality_instead_4_highlighting = error # +
# Class can be made sealed (non-inheritable) (non-private accessibility) [ClassCanBeSealed.Global] | https://www.jetbrains.com/help/resharper/ClassCanBeSealed.Global.html
resharper_class_can_be_sealed_global_highlighting = none # -
# Class can be made sealed (non-inheritable) (private accessibility) [ClassCanBeSealed.Local] | https://www.jetbrains.com/help/resharper/ClassCanBeSealed.Local.html
resharper_class_can_be_sealed_local_highlighting = none # -
# Confusing body-like statement [MisleadingBodyLikeStatement] | https://www.jetbrains.com/help/resharper/MisleadingBodyLikeStatement.html
resharper_misleading_body_like_statement_highlighting = error # +
# Container nullability attribute usage with declaration of non-container type [ContainerAnnotationRedundancy] | https://www.jetbrains.com/help/resharper/ContainerAnnotationRedundancy.html
resharper_container_annotation_redundancy_highlighting = error # +
# Convert 'if do while' into 'while' [ConvertIfDoToWhile] | https://www.jetbrains.com/help/resharper/ConvertIfDoToWhile.html
resharper_convert_if_do_to_while_highlighting = error # +
# Convert 'if' into '||' [ConvertIfToOrExpression] | https://www.jetbrains.com/help/resharper/ConvertIfToOrExpression.html
resharper_convert_if_to_or_expression_highlighting = error # +
# Convert local variable or field into constant (non-private accessibility) [ConvertToConstant.Global] | https://www.jetbrains.com/help/resharper/ConvertToConstant.Global.html
resharper_convert_to_constant_global_highlighting = error # +
# Convert local variable or field into constant (private accessibility) [ConvertToConstant.Local] | https://www.jetbrains.com/help/resharper/ConvertToConstant.Local.html
resharper_convert_to_constant_local_highlighting = error # +
# Declaration nullability inferred (parameter is inferred to be not null) [AnnotateNotNullParameter] | https://www.jetbrains.com/help/resharper/AnnotateNotNullParameter.html
resharper_annotate_not_null_parameter_highlighting = none # -
# Declaration nullability inferred (parameter is inferred to be nullable) [AnnotateCanBeNullParameter] | https://www.jetbrains.com/help/resharper/AnnotateCanBeNullParameter.html
resharper_annotate_can_be_null_parameter_highlighting = none # -
# Declaration nullability inferred (type member is inferred to be not null) [AnnotateNotNullTypeMember] | https://www.jetbrains.com/help/resharper/AnnotateNotNullTypeMember.html
resharper_annotate_not_null_type_member_highlighting = none # -
# Declaration nullability inferred (type member is inferred to be nullable) [AnnotateCanBeNullTypeMember] | https://www.jetbrains.com/help/resharper/AnnotateCanBeNullTypeMember.html
resharper_annotate_can_be_null_type_member_highlighting = none # -
# Dictionary item removal can be simplified with single 'Remove' [CanSimplifyDictionaryRemovingWithSingleCall] | https://www.jetbrains.com/help/resharper/CanSimplifyDictionaryRemovingWithSingleCall.html
resharper_can_simplify_dictionary_removing_with_single_call_highlighting = error # +
# Dictionary lookup can be simplified with 'GetValueOrDefault' [CanSimplifyDictionaryTryGetValueWithGetValueOrDefault] | https://www.jetbrains.com/help/resharper/CanSimplifyDictionaryTryGetValueWithGetValueOrDefault.html
resharper_can_simplify_dictionary_try_get_value_with_get_value_or_default_highlighting = error # +
# Dictionary lookup can be simplified with 'TryAdd' [CanSimplifyDictionaryLookupWithTryAdd] | https://www.jetbrains.com/help/resharper/CanSimplifyDictionaryLookupWithTryAdd.html
resharper_can_simplify_dictionary_lookup_with_try_add_highlighting = error # + d
# Dictionary lookup can be simplified with 'TryGetValue' [CanSimplifyDictionaryLookupWithTryGetValue] | https://www.jetbrains.com/help/resharper/CanSimplifyDictionaryLookupWithTryGetValue.html
resharper_can_simplify_dictionary_lookup_with_try_get_value_highlighting = error # + d
# Empty statement is redundant [EmptyStatement] | https://www.jetbrains.com/help/resharper/EmptyStatement.html
resharper_empty_statement_highlighting = error
# Extract common property pattern [ExtractCommonPropertyPattern] | https://www.jetbrains.com/help/resharper/ExtractCommonPropertyPattern.html
resharper_extract_common_property_pattern_highlighting = error # +
# Field can be made readonly (non-private accessibility) [FieldCanBeMadeReadOnly.Global] | https://www.jetbrains.com/help/resharper/FieldCanBeMadeReadOnly.Global.html
resharper_field_can_be_made_read_only_global_highlighting = error # + d
# Field can be made readonly (private accessibility) [FieldCanBeMadeReadOnly.Local] | https://www.jetbrains.com/help/resharper/FieldCanBeMadeReadOnly.Local.html
resharper_field_can_be_made_read_only_local_highlighting = error # + d
# Get-only auto-property is never assigned [UnassignedGetOnlyAutoProperty] | https://www.jetbrains.com/help/resharper/UnassignedGetOnlyAutoProperty.html
resharper_unassigned_get_only_auto_property_highlighting = error
# Invert condition [InvertCondition.1] | https://www.jetbrains.com/help/resharper/InvertCondition.1.html
resharper_invert_condition_1_highlighting = none # -
# Iteration variable can be declared with a more specific type [MoreSpecificForeachVariableTypeAvailable] | https://www.jetbrains.com/help/resharper/MoreSpecificForeachVariableTypeAvailable.html
resharper_more_specific_foreach_variable_type_available_highlighting = error # +
# Join local variable declaration and assignment [JoinDeclarationAndInitializer] | https://www.jetbrains.com/help/resharper/JoinDeclarationAndInitializer.html
resharper_join_declaration_and_initializer_highlighting = error # +
# Local function can be made static [LocalFunctionCanBeMadeStatic] | https://www.jetbrains.com/help/resharper/LocalFunctionCanBeMadeStatic.html
resharper_local_function_can_be_made_static_highlighting = none # -
# Local variable has too wide declaration scope [TooWideLocalVariableScope] | https://www.jetbrains.com/help/resharper/TooWideLocalVariableScope.html
resharper_too_wide_local_variable_scope_highlighting = error # ++
# Make constructor in abstract class protected [PublicConstructorInAbstractClass] | https://www.jetbrains.com/help/resharper/PublicConstructorInAbstractClass.html
resharper_public_constructor_in_abstract_class_highlighting = error # + d
# Member can be made private (non-private accessibility) [MemberCanBePrivate.Global] | https://www.jetbrains.com/help/resharper/MemberCanBePrivate.Global.html
resharper_member_can_be_private_global_highlighting = error
# Member can be made private (private accessibility) [MemberCanBePrivate.Local] | https://www.jetbrains.com/help/resharper/MemberCanBePrivate.Local.html
resharper_member_can_be_private_local_highlighting = error
# Member can be made protected (non-private accessibility) [MemberCanBeProtected.Global] | https://www.jetbrains.com/help/resharper/MemberCanBeProtected.Global.html
resharper_member_can_be_protected_global_highlighting = error # +
# Member can be made protected (private accessibility) [MemberCanBeProtected.Local] | https://www.jetbrains.com/help/resharper/MemberCanBeProtected.Local.html
resharper_member_can_be_protected_local_highlighting = none # -
# Member can be made static (shared) (non-private accessibility) [MemberCanBeMadeStatic.Global] | https://www.jetbrains.com/help/resharper/MemberCanBeMadeStatic.Global.html
resharper_member_can_be_made_static_global_highlighting = none # - d
# Member can be made static (shared) (private accessibility) [MemberCanBeMadeStatic.Local] | https://www.jetbrains.com/help/resharper/MemberCanBeMadeStatic.Local.html
resharper_member_can_be_made_static_local_highlighting = none # - d
# Member or type can be made internal (friend) [MemberCanBeInternal] | https://www.jetbrains.com/help/resharper/MemberCanBeInternal.html
resharper_member_can_be_internal_highlighting = none # -
# Method has async overload [MethodHasAsyncOverload] | https://www.jetbrains.com/help/resharper/MethodHasAsyncOverload.html
resharper_method_has_async_overload_highlighting = error # + d
# Method has async overload with cancellation support [MethodHasAsyncOverloadWithCancellation] | https://www.jetbrains.com/help/resharper/MethodHasAsyncOverloadWithCancellation.html
resharper_method_has_async_overload_with_cancellation_highlighting = error
# Method supports cancellation [MethodSupportsCancellation] | https://www.jetbrains.com/help/resharper/MethodSupportsCancellation.html
resharper_method_supports_cancellation_highlighting = error
# Missing XML comment for private or internal type or member [InternalOrPrivateMemberNotDocumented] | https://www.jetbrains.com/help/resharper/InternalOrPrivateMemberNotDocumented.html
resharper_internal_or_private_member_not_documented_highlighting = none # -
# Multiple nullable attributes usage [MultipleNullableAttributesUsage] | https://www.jetbrains.com/help/resharper/MultipleNullableAttributesUsage.html
resharper_multiple_nullable_attributes_usage_highlighting = error # +
# Nested string interpolation can be inlined [NestedStringInterpolation] | https://www.jetbrains.com/help/resharper/NestedStringInterpolation.html
resharper_nested_string_interpolation_highlighting = error # +
# Nullability attribute usage with declaration of void or value type [AnnotationRedundancyAtValueType] | https://www.jetbrains.com/help/resharper/AnnotationRedundancyAtValueType.html
resharper_annotation_redundancy_at_value_type_highlighting = error # +
# Nullability attribute used with declaration that cannot be directly referenced from other code
resharper_not_observable_annotation_redundancy_highlighting = none
# Parameter can be declared with the base type [NotObservableAnnotationRedundancy] | https://www.jetbrains.com/help/resharper/NotObservableAnnotationRedundancy.html
resharper_suggest_base_type_for_parameter_highlighting = error # +
# Parameter of the constructor can be declared with the base type [SuggestBaseTypeForParameterInConstructor] | https://www.jetbrains.com/help/resharper/SuggestBaseTypeForParameterInConstructor.html
resharper_suggest_base_type_for_parameter_in_constructor_highlighting = none # -
# Parameter type can be IEnumerable<T> (non-private accessibility) [ParameterTypeCanBeEnumerable.Global] | https://www.jetbrains.com/help/resharper/ParameterTypeCanBeEnumerable.Global.html
resharper_parameter_type_can_be_enumerable_global_highlighting = none # + -
# Parameter type can be IEnumerable<T> (private accessibility) [ParameterTypeCanBeEnumerable.Local] | https://www.jetbrains.com/help/resharper/ParameterTypeCanBeEnumerable.Local.html
resharper_parameter_type_can_be_enumerable_local_highlighting = none # + -
# Prefer using concrete value over 'default' or 'new()' [PreferConcreteValueOverDefault] | https://www.jetbrains.com/help/resharper/PreferConcreteValueOverDefault.html
resharper_prefer_concrete_value_over_default_highlighting = error # +
# Property can be made init-only (non-private accessibility) [PropertyCanBeMadeInitOnly.Global] | https://www.jetbrains.com/help/resharper/PropertyCanBeMadeInitOnly.Global.html
resharper_property_can_be_made_init_only_global_highlighting = error
# Property can be made init-only (private accessibility) [PropertyCanBeMadeInitOnly.Local] | https://www.jetbrains.com/help/resharper/PropertyCanBeMadeInitOnly.Local.html
resharper_property_can_be_made_init_only_local_highlighting = error
# Put local function after 'return' or 'continue' [MoveLocalFunctionAfterJumpStatement] | https://www.jetbrains.com/help/resharper/MoveLocalFunctionAfterJumpStatement.html
resharper_move_local_function_after_jump_statement_highlighting = error # ++
# Redundant 'is' [RedundantIsBeforeRelationalPattern] | https://www.jetbrains.com/help/resharper/RedundantIsBeforeRelationalPattern.html
resharper_redundant_is_before_relational_pattern_highlighting = error # +
# Remove constructor invocation [RemoveConstructorInvocation] | https://www.jetbrains.com/help/resharper/RemoveConstructorInvocation.html
resharper_remove_constructor_invocation_highlighting = error # +
# Remove redundant statement [RemoveRedundantOrStatement.False] | https://www.jetbrains.com/help/resharper/RemoveRedundantOrStatement.False.html
resharper_remove_redundant_or_statement_false_highlighting = error # +
# Remove redundant statement [RemoveRedundantOrStatement.True] | https://www.jetbrains.com/help/resharper/RemoveRedundantOrStatement.True.html
resharper_remove_redundant_or_statement_true_highlighting = error # +
# Remove ToList() [RemoveToList.1] | https://www.jetbrains.com/help/resharper/RemoveToList.1.html
resharper_remove_to_list_1_highlighting = error # +
# Remove ToList() [RemoveToList.2] | https://www.jetbrains.com/help/resharper/RemoveToList.2.html
resharper_remove_to_list_2_highlighting = error # +
# Replace 'async' code with 'Task'-return [ReplaceAsyncWithTaskReturn] | https://www.jetbrains.com/help/resharper/ReplaceAsyncWithTaskReturn.html
resharper_replace_async_with_task_return_highlighting = none # -
# Replace with FirstOrDefault($args$) [ReplaceWithFirstOrDefault.1] | https://www.jetbrains.com/help/resharper/ReplaceWithFirstOrDefault.1.html
resharper_replace_with_first_or_default_1_highlighting = error # +
# Replace with FirstOrDefault($args$) [ReplaceWithFirstOrDefault.2] | https://www.jetbrains.com/help/resharper/ReplaceWithFirstOrDefault.2.html
resharper_replace_with_first_or_default_2_highlighting = error # +
# Replace with FirstOrDefault($args$) [ReplaceWithFirstOrDefault.3] | https://www.jetbrains.com/help/resharper/ReplaceWithFirstOrDefault.3.html
resharper_replace_with_first_or_default_3_highlighting = error # +
# Replace with FirstOrDefault($args$) [ReplaceWithFirstOrDefault.4] | https://www.jetbrains.com/help/resharper/ReplaceWithFirstOrDefault.4.html
resharper_replace_with_first_or_default_4_highlighting = error # +
# Replace with LastOrDefault($args$) [ReplaceWithLastOrDefault.1] | https://www.jetbrains.com/help/resharper/ReplaceWithLastOrDefault.1.html
resharper_replace_with_last_or_default_1_highlighting = error # +
# Replace with LastOrDefault($args$) [ReplaceWithLastOrDefault.2] | https://www.jetbrains.com/help/resharper/ReplaceWithLastOrDefault.2.html
resharper_replace_with_last_or_default_2_highlighting = error # +
# Replace with LastOrDefault($args$) [ReplaceWithLastOrDefault.3] | https://www.jetbrains.com/help/resharper/ReplaceWithLastOrDefault.3.html
resharper_replace_with_last_or_default_3_highlighting = error # +
# Replace with LastOrDefault($args$) [ReplaceWithLastOrDefault.4] | https://www.jetbrains.com/help/resharper/ReplaceWithLastOrDefault.4.html
resharper_replace_with_last_or_default_4_highlighting = error # +
# Replace with OfType<T>()
resharper_replace_with_of_type_1_highlighting = none
# Replace with OfType<T>()
resharper_replace_with_of_type_2_highlighting = none
# Replace with OfType<T>()
resharper_replace_with_of_type_3_highlighting = none
# Replace with OfType<T>().Any() [ReplaceWithOfType.Any.1] | https://www.jetbrains.com/help/rider/ReplaceWithOfType.Any.1.html
resharper_replace_with_of_type_any_1_highlighting = error # +
# Replace with OfType<T>().Any() (replace with OfType<T>().Any(..)) [ReplaceWithOfType.Any.2] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.Any.2.html
resharper_replace_with_of_type_any_2_highlighting = error # +
# Replace with OfType<T>().Count() [ReplaceWithOfType.Count.1] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.Count.1.html
resharper_replace_with_of_type_count_1_highlighting = error # +
# Replace with OfType<T>().Count() (replace with OfType<T>().Count(..)) [ReplaceWithOfType.Count.2] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.Count.2.html
resharper_replace_with_of_type_count_2_highlighting = error # +
# Replace with OfType<T>().First() [ReplaceWithOfType.First.1] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.First.1.html
resharper_replace_with_of_type_first_1_highlighting = error # +
# Replace with OfType<T>().First() (replace with OfType<T>().First(..)) [ReplaceWithOfType.First.2] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.First.2.html
resharper_replace_with_of_type_first_2_highlighting = error # +
# Replace with OfType<T>().FirstOrDefault() [ReplaceWithOfType.FirstOrDefault.1] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.FirstOrDefault.1.html
resharper_replace_with_of_type_first_or_default_1_highlighting = error # +
# Replace with OfType<T>().FirstOrDefault() (replace with OfType<T>().FirstOrDefault(..)) [ReplaceWithOfType.FirstOrDefault.2] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.FirstOrDefault.2.html
resharper_replace_with_of_type_first_or_default_2_highlighting = error # +
# Replace with OfType<T>().Last() [ReplaceWithOfType.Last.1] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.Last.1.html
resharper_replace_with_of_type_last_1_highlighting = error # +
# Replace with OfType<T>().Last() (replace with OfType<T>().Last(..)) [ReplaceWithOfType.Last.2] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.Last.2.html
resharper_replace_with_of_type_last_2_highlighting = error # +
# Replace with OfType<T>().LastOrDefault() [ReplaceWithOfType.LastOrDefault.1] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.LastOrDefault.1.html
resharper_replace_with_of_type_last_or_default_1_highlighting = error # +
# Replace with OfType<T>().LastOrDefault() (replace with OfType<T>().LastOrDefault(..)) [ReplaceWithOfType.LastOrDefault.2] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.LastOrDefault.2.html
resharper_replace_with_of_type_last_or_default_2_highlighting = error # +
# Replace with OfType<T>().LongCount() [ReplaceWithOfType.LongCount] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.LongCount.html
resharper_replace_with_of_type_long_count_highlighting = error # +
# Replace with OfType<T>().Single() [ReplaceWithOfType.Single.1] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.Single.1.html
resharper_replace_with_of_type_single_1_highlighting = error # +
# Replace with OfType<T>().Single() (replace with OfType<T>().Single(..)) [ReplaceWithOfType.Single.2] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.Single.2.html
resharper_replace_with_of_type_single_2_highlighting = error # +
# Replace with OfType<T>().SingleOrDefault() [ReplaceWithOfType.SingleOrDefault.1] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.SingleOrDefault.1.html
resharper_replace_with_of_type_single_or_default_1_highlighting = error # +
# Replace with OfType<T>().SingleOrDefault() (replace with OfType<T>().SingleOrDefault(..)) [ReplaceWithOfType.SingleOrDefault.2] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.SingleOrDefault.2.html
resharper_replace_with_of_type_single_or_default_2_highlighting = error # +
# Replace with OfType<T>().Where() (replace with OfType<T>().Where(..)) [ReplaceWithOfType.Where] | https://www.jetbrains.com/help/resharper/ReplaceWithOfType.Where.html
resharper_replace_with_of_type_where_highlighting = error # +
# Replace with simple assignment [ReplaceWithSimpleAssignment.True] | https://www.jetbrains.com/help/resharper/ReplaceWithSimpleAssignment.True.html
resharper_replace_with_simple_assignment_true_highlighting = error # +
# Replace with simple assignment [ReplaceWithSimpleAssignment.False] | https://www.jetbrains.com/help/resharper/ReplaceWithSimpleAssignment.False.html
resharper_replace_with_simple_assignment_false_highlighting = error # +
# Replace with single assignment [ReplaceWithSingleAssignment.False] | https://www.jetbrains.com/help/resharper/ReplaceWithSingleAssignment.False.html
resharper_replace_with_single_assignment_false_highlighting = error # + d
# Replace with single assignment [ReplaceWithSingleAssignment.True] | https://www.jetbrains.com/help/resharper/ReplaceWithSingleAssignment.True.html
resharper_replace_with_single_assignment_true_highlighting = error # + d
# Replace with single call to Any(..) [ReplaceWithSingleCallToAny] | https://www.jetbrains.com/help/resharper/ReplaceWithSingleCallToAny.html
resharper_replace_with_single_call_to_any_highlighting = none # + - d
# Replace with single call to Count(..) [ReplaceWithSingleCallToCount] | https://www.jetbrains.com/help/resharper/ReplaceWithSingleCallToCount.html
resharper_replace_with_single_call_to_count_highlighting = none # + - d
# Replace with single call to First(..) [ReplaceWithSingleCallToFirst] | https://www.jetbrains.com/help/resharper/ReplaceWithSingleCallToFirst.html
resharper_replace_with_single_call_to_first_highlighting = none # + - d
# Replace with single call to FirstOrDefault(..) [ReplaceWithSingleCallToFirstOrDefault] | https://www.jetbrains.com/help/resharper/ReplaceWithSingleCallToFirstOrDefault.html
resharper_replace_with_single_call_to_first_or_default_highlighting = none # + - d
# Replace with single call to Last(..) [ReplaceWithSingleCallToLast] | https://www.jetbrains.com/help/resharper/ReplaceWithSingleCallToLast.html
resharper_replace_with_single_call_to_last_highlighting = none # + - d
# Replace with single call to LastOrDefault(..) [ReplaceWithSingleCallToLastOrDefault] | https://www.jetbrains.com/help/resharper/ReplaceWithSingleCallToLastOrDefault.html
resharper_replace_with_single_call_to_last_or_default_highlighting = none # + - d
# Replace with single call to Single(..) [ReplaceWithSingleCallToSingle] | https://www.jetbrains.com/help/resharper/ReplaceWithSingleCallToSingle.html
resharper_replace_with_single_call_to_single_highlighting = none # + - d
# Replace with single call to SingleOrDefault(..) [ReplaceWithSingleCallToSingleOrDefault] | https://www.jetbrains.com/help/resharper/ReplaceWithSingleCallToSingleOrDefault.html
resharper_replace_with_single_call_to_single_or_default_highlighting = none # + - d
# Replace with SingleOrDefault($args$) [ReplaceWithSingleOrDefault.1] | https://www.jetbrains.com/help/resharper/ReplaceWithSingleOrDefault.1.html
resharper_replace_with_single_or_default_1_highlighting = error # +
# Replace with SingleOrDefault($args$) [ReplaceWithSingleOrDefault.2] | https://www.jetbrains.com/help/resharper/ReplaceWithSingleOrDefault.2.html
resharper_replace_with_single_or_default_2_highlighting = error # +
# Replace with SingleOrDefault($args$) [ReplaceWithSingleOrDefault.3] | https://www.jetbrains.com/help/resharper/ReplaceWithSingleOrDefault.3.html
resharper_replace_with_single_or_default_3_highlighting = error # +
# Replace with SingleOrDefault($args$) [ReplaceWithSingleOrDefault.4] | https://www.jetbrains.com/help/resharper/ReplaceWithSingleOrDefault.4.html
resharper_replace_with_single_or_default_4_highlighting = error # +
# Return type can be IEnumerable<T> (non-private accessibility) [ReturnTypeCanBeEnumerable.Global] | https://www.jetbrains.com/help/resharper/ReturnTypeCanBeEnumerable.Global.html
resharper_return_type_can_be_enumerable_global_highlighting = none # + -
# Return type can be IEnumerable<T> (private accessibility) [ReturnTypeCanBeEnumerable.Local] | https://www.jetbrains.com/help/resharper/ReturnTypeCanBeEnumerable.Local.html
resharper_return_type_can_be_enumerable_local_highlighting = none # + -
# Simplify conditional ternary expression [SimplifyConditionalTernaryExpression] | https://www.jetbrains.com/help/resharper/SimplifyConditionalTernaryExpression.html
resharper_simplify_conditional_ternary_expression_highlighting = error # + d
# Simplify 'IsInstanceOfType()' invocation [CanSimplifyIsAssignableFrom] | https://www.jetbrains.com/help/resharper/CanSimplifyIsAssignableFrom.html
resharper_can_simplify_is_assignable_from_highlighting = error # +
# Simplify LINQ expression (use 'All') [SimplifyLinqExpressionUseAll] | https://www.jetbrains.com/help/resharper/SimplifyLinqExpressionUseAll.html
resharper_simplify_linq_expression_use_all_highlighting = none # -
# Simplify LINQ expression (use 'Any') [SimplifyLinqExpressionUseAny] | https://www.jetbrains.com/help/resharper/SimplifyLinqExpressionUseAny.html
resharper_simplify_linq_expression_use_any_highlighting = error # +
# Simplify negated pattern [DoubleNegationInPattern] | https://www.jetbrains.com/help/resharper/DoubleNegationInPattern.html
resharper_double_negation_in_pattern_highlighting = error # +
# Simplify negated relational pattern [NegationOfRelationalPattern] | https://www.jetbrains.com/help/resharper/NegationOfRelationalPattern.html
resharper_negation_of_relational_pattern_highlighting = error # +
# Simplify negative equality expression [NegativeEqualityExpression] | https://www.jetbrains.com/help/resharper/NegativeEqualityExpression.html
resharper_negative_equality_expression_highlighting = error # + d
# Specify string comparison explicitly [SpecifyStringComparison] | https://www.jetbrains.com/help/resharper/SpecifyStringComparison.html
resharper_specify_string_comparison_highlighting = none # - d
# Specify string culture explicitly [SpecifyACultureInStringConversionExplicitly] | https://www.jetbrains.com/help/resharper/SpecifyACultureInStringConversionExplicitly.html
resharper_specify_a_culture_in_string_conversion_explicitly_highlighting = none # - d
# String literal can be inlined [StringLiteralAsInterpolationArgument] | https://www.jetbrains.com/help/resharper/StringLiteralAsInterpolationArgument.html
resharper_string_literal_as_interpolation_argument_highlighting = error # +
# String.Compare is culture-specific (string.Compare(string, int, string, int) is culture-specific) [StringCompareIsCultureSpecific.4] | https://www.jetbrains.com/help/resharper/StringCompareIsCultureSpecific.4.html
resharper_string_compare_is_culture_specific_4_highlighting = error # + d
# String.Compare is culture-specific (string.Compare(string, int, string, int, bool) is culture-specific) [StringCompareIsCultureSpecific.5] | https://www.jetbrains.com/help/resharper/StringCompareIsCultureSpecific.5.html
resharper_string_compare_is_culture_specific_5_highlighting = error # + d
# String.Compare is culture-specific (string.Compare(string, int, string, int, bool) is culture-specific) [StringCompareIsCultureSpecific.6] | https://www.jetbrains.com/help/resharper/StringCompareIsCultureSpecific.6.html
resharper_string_compare_is_culture_specific_6_highlighting = error # + d
# String.Compare is culture-specific (string.Compare(string, string) is culture-specific) [StringCompareIsCultureSpecific.1] | https://www.jetbrains.com/help/resharper/StringCompareIsCultureSpecific.1.html
resharper_string_compare_is_culture_specific_1_highlighting = error # + d
# String.Compare is culture-specific (string.Compare(string, string, bool) is culture-specific) [StringCompareIsCultureSpecific.2] | https://www.jetbrains.com/help/resharper/StringCompareIsCultureSpecific.2.html
resharper_string_compare_is_culture_specific_2_highlighting = error # + d
# String.Compare is culture-specific (string.Compare(string, string, bool) is culture-specific) [StringCompareIsCultureSpecific.3] | https://www.jetbrains.com/help/resharper/StringCompareIsCultureSpecific.3.html
resharper_string_compare_is_culture_specific_3_highlighting = error # + d
# String.CompareTo is culture-specific [StringCompareToIsCultureSpecific] | https://www.jetbrains.com/help/resharper/StringCompareToIsCultureSpecific.html
resharper_string_compare_to_is_culture_specific_highlighting = error # + d
# String.EndsWith is culture-specific (string.EndsWith(string) is culture-specific) [StringEndsWithIsCultureSpecific] | https://www.jetbrains.com/help/resharper/StringEndsWithIsCultureSpecific.html
resharper_string_ends_with_is_culture_specific_highlighting = none # + rejected for EF false positive
# String.IndexOf is culture-specific (string.IndexOf(string) is culture-specific) [StringIndexOfIsCultureSpecific.1] | https://www.jetbrains.com/help/resharper/StringIndexOfIsCultureSpecific.1.html
resharper_string_index_of_is_culture_specific_1_highlighting = error # + d
# String.IndexOf is culture-specific (string.IndexOf(string, int) is culture-specific) [StringIndexOfIsCultureSpecific.2] | https://www.jetbrains.com/help/resharper/StringIndexOfIsCultureSpecific.2.html
resharper_string_index_of_is_culture_specific_2_highlighting = error # + d
# String.IndexOf is culture-specific (string.IndexOf(string, int) is culture-specific) [StringIndexOfIsCultureSpecific.3] | https://www.jetbrains.com/help/resharper/StringIndexOfIsCultureSpecific.3.html
resharper_string_index_of_is_culture_specific_3_highlighting = error # + d
# String.LastIndexOf is culture-specific (string.LastIndexOf(string) is culture-specific) [StringLastIndexOfIsCultureSpecific.1] | https://www.jetbrains.com/help/resharper/StringLastIndexOfIsCultureSpecific.1.html
resharper_string_last_index_of_is_culture_specific_1_highlighting = none # rejected for EF false-positive
# String.LastIndexOf is culture-specific (string.LastIndexOf(string, int) is culture-specific) [StringLastIndexOfIsCultureSpecific.2] | https://www.jetbrains.com/help/resharper/StringLastIndexOfIsCultureSpecific.2.html
resharper_string_last_index_of_is_culture_specific_2_highlighting resharper_string_last_index_of_is_culture_specific_1_highlighting = none # rejected for EF false-positive
# String.LastIndexOf is culture-specific (string.LastIndexOf(string, int) is culture-specific) [StringLastIndexOfIsCultureSpecific.3] | https://www.jetbrains.com/help/resharper/StringLastIndexOfIsCultureSpecific.3.html
resharper_string_last_index_of_is_culture_specific_3_highlighting resharper_string_last_index_of_is_culture_specific_1_highlighting = none # rejected for EF false-positive
# String.StartsWith is culture-specific (string.StartsWith(string) is culture-specific) [StringStartsWithIsCultureSpecific] | https://www.jetbrains.com/help/resharper/StringStartsWithIsCultureSpecific.html
resharper_string_starts_with_is_culture_specific_highlighting = none # + rejected for EF false positive
# Struct can be made readonly [StructCanBeMadeReadOnly] | https://www.jetbrains.com/help/resharper/StructCanBeMadeReadOnly.html
resharper_struct_can_be_made_read_only_highlighting = error
# Struct lacks 'IEquatable' implementation (non-private accessibility) [StructLacksIEquatable.Global] | https://www.jetbrains.com/help/resharper/StructLacksIEquatable.Global.html
resharper_struct_lacks_i_equatable_global_highlighting = error # + d
# Struct lacks 'IEquatable' implementation (private accessibility) [StructLacksIEquatable.Local] | https://www.jetbrains.com/help/resharper/StructLacksIEquatable.Local.html
resharper_struct_lacks_i_equatable_local_highlighting = error # + d
# Struct member can be made readonly [StructMemberCanBeMadeReadOnly] | https://www.jetbrains.com/help/resharper/StructMemberCanBeMadeReadOnly.html
resharper_struct_member_can_be_made_read_only_highlighting = error # + d
# Struct with default equality members is used for comparison (non-private accessibility) [DefaultStructEqualityIsUsed.Global] | https://www.jetbrains.com/help/resharper/DefaultStructEqualityIsUsed.Global.html
resharper_default_struct_equality_is_used_global_highlighting = none # + d rejected
# Struct with default equality members is used for comparison (private accessibility) [DefaultStructEqualityIsUsed.Local] | https://www.jetbrains.com/help/resharper/DefaultStructEqualityIsUsed.Local.html
resharper_default_struct_equality_is_used_local_highlighting = none # + d rejected
# try-catch and try-finally statements can be merged [TryStatementsCanBeMerged] | https://www.jetbrains.com/help/resharper/TryStatementsCanBeMerged.html
resharper_try_statements_can_be_merged_highlighting = error # +
# Type can be made file-local [MemberCanBeFileLocal] | https://www.jetbrains.com/help/resharper/MemberCanBeFileLocal.html
resharper_member_can_be_file_local_highlighting = none # none
# Type parameter could be declared as covariant or contravariant [TypeParameterCanBeVariant] | https://www.jetbrains.com/help/resharper/TypeParameterCanBeVariant.html
resharper_type_parameter_can_be_variant_highlighting = none # + -
# Type with suspicious equality is used in a record (non-private accessibility) [TypeWithSuspiciousEqualityIsUsedInRecord.Global] | https://www.jetbrains.com/help/resharper/TypeWithSuspiciousEqualityIsUsedInRecord.Global.html
resharper_type_with_suspicious_equality_is_used_in_record_global_highlighting = error # +
# Type with suspicious equality is used in a record (private accessibility) [TypeWithSuspiciousEqualityIsUsedInRecord.Local] | https://www.jetbrains.com/help/resharper/TypeWithSuspiciousEqualityIsUsedInRecord.Local.html
resharper_type_with_suspicious_equality_is_used_in_record_local_highlighting = error # +
# Usage of default struct equality [UsageOfDefaultStructEquality] | https://www.jetbrains.com/help/resharper/UsageOfDefaultStructEquality.html
resharper_usage_of_default_struct_equality_highlighting = error # +
# Use 'ArgumentNullException.ThrowIfNull' [UseThrowIfNullMethod] | https://www.jetbrains.com/help/resharper/UseThrowIfNullMethod.html
resharper_use_throw_if_null_method_highlighting = error # + d
# Use array creation expression [UseArrayCreationExpression.1] | https://www.jetbrains.com/help/resharper/UseArrayCreationExpression.1.html
resharper_use_array_creation_expression_1_highlighting = error # +
# Use array creation expression [UseArrayCreationExpression.2] | https://www.jetbrains.com/help/resharper/UseArrayCreationExpression.2.html
resharper_use_array_creation_expression_2_highlighting = error # +
# Use 'Array.Empty<T>()' [UseArrayEmptyMethod] | https://www.jetbrains.com/help/resharper/UseArrayEmptyMethod.html
resharper_use_array_empty_method_highlighting = error # +
# Use cancellation token [UseCancellationTokenForIAsyncEnumerable] | https://www.jetbrains.com/help/resharper/UseCancellationTokenForIAsyncEnumerable.html
resharper_use_cancellation_token_for_i_async_enumerable_highlighting = error
# Use compiler-supported nullable attributes [UseNullableAttributesSupportedByCompiler] | https://www.jetbrains.com/help/resharper/UseNullableAttributesSupportedByCompiler.html
resharper_use_nullable_attributes_supported_by_compiler_highlighting = none # -
# Use 'EventArgs.Empty' [UseEventArgsEmptyField] | https://www.jetbrains.com/help/resharper/UseEventArgsEmptyField.html
resharper_use_event_args_empty_field_highlighting = error # +
# Use indexed property [UseIndexedProperty] | https://www.jetbrains.com/help/resharper/UseIndexedProperty.html
resharper_use_indexed_property_highlighting = error # +
# Use 'is' operator [CanSimplifyIsInstanceOfType] | https://www.jetbrains.com/help/resharper/CanSimplifyIsInstanceOfType.html
resharper_can_simplify_is_instance_of_type_highlighting = error # +
# Use method Any() [UseMethodAny.0] | https://www.jetbrains.com/help/resharper/UseMethodAny.0.html
resharper_use_method_any_0_highlighting = error # + d
# Use method Any() [UseMethodAny.1] | https://www.jetbrains.com/help/resharper/UseMethodAny.1.html
resharper_use_method_any_1_highlighting = error # + d
# Use method Any() [UseMethodAny.2] | https://www.jetbrains.com/help/resharper/UseMethodAny.2.html
resharper_use_method_any_2_highlighting = error # + d
# Use method Any() [UseMethodAny.3] | https://www.jetbrains.com/help/resharper/UseMethodAny.3.html
resharper_use_method_any_3_highlighting = error # + d
# Use method Any() [UseMethodAny.4] | https://www.jetbrains.com/help/resharper/UseMethodAny.4.html
resharper_use_method_any_4_highlighting = error # + d
# Use 'String.IsNullOrEmpty' [ReplaceWithStringIsNullOrEmpty] | https://www.jetbrains.com/help/resharper/ReplaceWithStringIsNullOrEmpty.html
resharper_replace_with_string_is_null_or_empty_highlighting = error # +
# Use 'Type.EmptyTypes' [UseEmptyTypesField] | https://www.jetbrains.com/help/resharper/UseEmptyTypesField.html
resharper_use_empty_types_field_highlighting = error # +
# '#warning' directive
resharper_c_sharp_warnings_cs1030_highlighting = none # -
# [InterpolatedStringHandlerArgument] has no effect when applied to lambda parameters and will be ignored at the call site.
resharper_c_sharp_warnings_cs8971_highlighting = none # -
# A default value is specified for 'ref readonly' parameter, but 'ref readonly' should be used only for references. Consider declaring the parameter as 'in'.
resharper_c_sharp_warnings_cs9200_highlighting = none # -
# A local variable is returned by reference but was initialized to a value that cannot be returned by reference.
resharper_c_sharp_warnings_cs9082_highlighting = none # -
# A member of a variable is returned by reference but was initialized to a value that cannot be returned by reference
resharper_c_sharp_warnings_cs9083_highlighting = none # -
# A method marked [DoesNotReturn] should not return.
resharper_c_sharp_warnings_cs8763_highlighting = none # -
# A possible null value may not be used for a type marked with [NotNull] or [DisallowNull].
resharper_c_sharp_warnings_cs8607_highlighting = none # -
# A previous catch clause already catches all exceptions
resharper_c_sharp_warnings_cs1058_highlighting = none # -
# A result of a stackalloc expression in this context may be exposed outside of the containing method.
resharper_c_sharp_warnings_cs9081_highlighting = none # -
# A value of type 'System.Threading.Lock' converted to a different type will use likely unintended monitor-based locking in 'lock' statement
resharper_c_sharp_warnings_cs9216_highlighting = none # -
# Access to a member through 'base' keyword from anonymous method, lambda expression, query expression or iterator results in unverifiable code
resharper_c_sharp_warnings_cs1911_highlighting = none # -
# Alignment value 'value' has a magnitude greater than 'magnitude limit' and may result in a large formatted string.
resharper_c_sharp_warnings_cs8094_highlighting = none # -
# Ambiguous reference in XML comment
resharper_c_sharp_warnings_cs1574_highlighting = none # -
# Argument cannot be used as an output for parameter due to differences in the nullability of reference types.
resharper_c_sharp_warnings_cs8624_highlighting = none # -
# Argument cannot be used for corresponding parameter due to differences in the nullability of reference types.
resharper_c_sharp_warnings_cs8620_highlighting = none # -
# Argument should be a variable because it is passed to a 'ref readonly' parameter.
resharper_c_sharp_warnings_cs9193_highlighting = none # -
# Argument should be passed with the 'in' keyword.
resharper_c_sharp_warnings_cs9195_highlighting = none # -
# Assignment in conditional expression
resharper_c_sharp_warnings_cs0665_highlighting = none # -
# Assignment made to same variable
resharper_c_sharp_warnings_cs1717_highlighting = none # -
# Async function without await expression
resharper_c_sharp_warnings_cs1998_highlighting = none # -
# Async method invocation without await expression
resharper_c_sharp_warnings_cs4014_highlighting = none # -
# Asynchronous 'Main' method will not be used as an entry point because a synchronous entry point was found.
resharper_c_sharp_warnings_cs8892_highlighting = none # -
# Async-iterator has one or more parameters of type 'CancellationToken' but none of them is annotated with the 'EnumeratorCancellation' attribute.
resharper_c_sharp_warnings_cs8425_highlighting = none # -
# 'attribute modifier' is not a recognized attribute location. All attributes in this block will be ignored
resharper_c_sharp_warnings_cs0658_highlighting = none # -
# 'attribute modifier' is not a valid attribute location for this declaration. All attributes in this block will be ignored
resharper_c_sharp_warnings_cs0657_highlighting = none # -
# Badly formed XML in included comments file
resharper_c_sharp_warnings_cs1592_highlighting = none # -
# Bitwise-or operator used on a sign-extended operand.
resharper_c_sharp_warnings_cs0675_highlighting = none # -
# Call to a non-readonly member from a 'readonly' member results in an implicit copy of 'this'
resharper_c_sharp_warnings_cs8656_highlighting = none # -
# Cannot convert null literal to non-nullable reference type.
resharper_c_sharp_warnings_cs8625_highlighting = none # -
# Cannot resolve reference in XML comment
resharper_c_sharp_warnings_cs1574_cs1584_cs1581_cs1580_highlighting = none # -
# Class overrides Object.Equals(object o) but not Object.GetHashCode()
resharper_c_sharp_warnings_cs0659_highlighting = none # -
# Code is unreachable
resharper_c_sharp_warnings_cs0162_highlighting = none # -
# Collection expression may incur unexpected heap allocations
resharper_c_sharp_warnings_cs9208_highlighting = none # -
# Collection expression may incur unexpected heap allocations due to the use of '..' spreads
resharper_c_sharp_warnings_cs9209_highlighting = none # -
# Comparing with null of nullable value type always produces 'false'
resharper_c_sharp_warnings_cs0464_highlighting = none # -
# Comparison to integral constant is useless; the constant is outside the range of type 'type'.
resharper_c_sharp_warnings_cs0652_highlighting = none # -
# Converting method group to non-delegate type 'object'.
resharper_c_sharp_warnings_cs8974_highlighting = none # -
# Converting null literal or possible null value to non-nullable type.
resharper_c_sharp_warnings_cs8600_highlighting = none # -
# Declaring new protected member in sealed class is the same as declaring it as private
resharper_c_sharp_warnings_cs0628_highlighting = none # -
# Default value specified for parameter will have no effect because it applies to a member that is used in contexts that do not allow optional arguments
resharper_c_sharp_warnings_cs1066_highlighting = none # -
# Dereference of a possibly null reference.
resharper_c_sharp_warnings_cs8602_highlighting = none # -
# Duplicate param tag in XML comment
resharper_c_sharp_warnings_cs1571_highlighting = none # -
# Duplicate typeparam tag in XML comment
resharper_c_sharp_warnings_cs1710_highlighting = none # -
# Empty switch block
resharper_c_sharp_warnings_cs1522_highlighting = none # -
# Field is never used
resharper_unused_field_compiler_highlighting = none # -
# Filter expression is a constant, consider removing the filter
resharper_c_sharp_warnings_cs7095_highlighting = none # -
# Given expression always matches the provided pattern
resharper_c_sharp_warnings_cs8794_highlighting = none # -
# Given expression is always of the provided type
resharper_c_sharp_warnings_cs0183_highlighting = none # -
# Given expression is never of the provided type
resharper_c_sharp_warnings_cs0184_highlighting = none # -
# 'goto case' value is not implicitly convertible to required type
resharper_c_sharp_warnings_cs0469_highlighting = none # -
# In language version preview, the 'field' keyword binds to a synthesized backing field for the property
resharper_c_sharp_warnings_cs9258_highlighting = none # -
# Incorrect signature in XML comment
resharper_c_sharp_warnings_cs1580_highlighting = none # -
# Inline array conversion operator will not be used for conversion from expression of the declaring type.
resharper_c_sharp_warnings_cs9183_highlighting = none # -
# Inline array indexer will not be used for element access expression.
resharper_c_sharp_warnings_cs9181_highlighting = none # -
# Inline array 'Slice' method will not be used for element access expression.
resharper_c_sharp_warnings_cs9182_highlighting = none # -
# 'Inline arrays' language feature is not supported for inline array types with element field which is either a 'ref' field, or has type that is not valid as a type argument.
resharper_c_sharp_warnings_cs9184_highlighting = none # -
# Introducing a 'Finalize' method can interfere with destructor invocation
resharper_c_sharp_warnings_cs0465_highlighting = none # -
# Invalid XML in XML comment
resharper_c_sharp_warnings_cs1570_highlighting = none # -
# Invalid XML include element
resharper_c_sharp_warnings_cs1590_highlighting = none # -
# Keyword 'new' is redundant
resharper_c_sharp_warnings_cs0109_highlighting = none # -
# Keyword 'new' is required
resharper_c_sharp_warnings_cs0108_cs0114_highlighting = none # -
# Member cannot be used in this attribute.
resharper_c_sharp_warnings_cs8776_highlighting = none # -
# Member must conditionally have a non-null value when exiting a function.
resharper_c_sharp_warnings_cs8775_highlighting = none # -
# Member must have a non-null value when exiting.
resharper_c_sharp_warnings_cs8774_highlighting = none # -
# Member overrides obsolete member
resharper_c_sharp_warnings_cs0672_highlighting = none # -
# Method lacks '[DoesNotReturn]' annotation in order to match implemented or overridden member.
resharper_c_sharp_warnings_cs8770_highlighting = none # -
# Missing XML comment for publicly visible type or member
resharper_c_sharp_warnings_cs1591_highlighting = none # -
# Multiple override candidates at run-time
resharper_c_sharp_warnings_cs1957_highlighting = none # -
# Multiple Shaders with the same name found [ShaderLabShaderReferenceMultipleCandidates] | https://www.jetbrains.com/help/resharper/ShaderLabShaderReferenceMultipleCandidates.html
resharper_shader_lab_shader_reference_multiple_candidates_highlighting = error # +
# Namespace should be default namespace of this project [CSharpWarnings::WME006] | https://www.jetbrains.com/help/resharper/CSharpWarnings_WME006.html
resharper_c_sharp_warnings_wme006_highlighting = error # + d
# Non-accessed field [NotAccessedField.Compiler]
resharper_not_accessed_field_compiler_highlighting = none # -
# Non-accessed local variable [NotAccessedVariable.Compiler]
resharper_not_accessed_variable_compiler_highlighting = none # -
# Non-nullable backing field is uninitialized.
resharper_c_sharp_warnings_cs9264_highlighting = none # -
# Non-nullable member is uninitialized.
resharper_c_sharp_warnings_cs8618_highlighting = none # -
# Nullability mismatch in constraints for type parameter.
resharper_c_sharp_warnings_cs8633_highlighting = none # -
# Nullability of reference types in explicit interface specifier doesn't match interface implemented by the type.
resharper_c_sharp_warnings_cs8643_highlighting = none # -
# Nullability of reference types in interface implemented by the base type doesn't match.
resharper_c_sharp_warnings_cs8644_highlighting = none # -
# Nullability of reference types in return type doesn't match implemented member.
resharper_c_sharp_warnings_cs8616_highlighting = none # -
# Nullability of reference types in return type doesn't match implicitly implemented member.
resharper_c_sharp_warnings_cs8613_highlighting = none # -
# Nullability of reference types in return type doesn't match overridden member.
resharper_c_sharp_warnings_cs8609_highlighting = none # -
# Nullability of reference types in return type doesn't match partial method declaration.
resharper_c_sharp_warnings_cs8819_highlighting = none # -
# Nullability of reference types in return type doesn't match the target delegate (possibly because of nullability attributes).
resharper_c_sharp_warnings_cs8621_highlighting = none # -
# Nullability of reference types in return type in interceptor method doesn't match interceptable method'
resharper_c_sharp_warnings_cs9159_highlighting = none # -
# Nullability of reference types in source type doesn't match target type.
resharper_c_sharp_warnings_cs8619_highlighting = none # -
# Nullability of reference types in type doesn't match implemented member.
resharper_c_sharp_warnings_cs8615_highlighting = none # -
# Nullability of reference types in type doesn't match implicitly implemented member.
resharper_c_sharp_warnings_cs8612_highlighting = none # -
# Nullability of reference types in type doesn't match overridden member.
resharper_c_sharp_warnings_cs8608_highlighting = none # -
# Nullability of reference types in type of a parameter doesn't match the target delegate (possibly because of nullability attributes).
resharper_c_sharp_warnings_cs8622_highlighting = none # -
# Nullability of reference types in type of parameter doesn't match implemented member.
resharper_c_sharp_warnings_cs8617_highlighting = none # -
# Nullability of reference types in type of parameter doesn't match implicitly implemented member.
resharper_c_sharp_warnings_cs8614_highlighting = none # -
# Nullability of reference types in type of parameter doesn't match interceptable method
resharper_c_sharp_warnings_cs9158_highlighting = none # -
# Nullability of reference types in type of parameter doesn't match overridden member.
resharper_c_sharp_warnings_cs8610_highlighting = none # -
# Nullability of reference types in type of parameter doesn't match partial member declaration.
resharper_c_sharp_warnings_cs8611_highlighting = none # -
# Nullability of return type doesn't match implemented member (possibly because of nullability attributes).
resharper_c_sharp_warnings_cs8768_highlighting = none # -
# Nullability of return type doesn't match implicitly implemented member (possibly because of nullability attributes).
resharper_c_sharp_warnings_cs8766_highlighting = none # -
# Nullability of return type doesn't match overridden member (possibly because of nullability attributes).
resharper_c_sharp_warnings_cs8764_highlighting = none # -
# Nullability of type argument doesn't match 'class' constraint.
resharper_c_sharp_warnings_cs8634_highlighting = none # -
# Nullability of type argument doesn't match constraint type.
resharper_c_sharp_warnings_cs8631_highlighting = none # -
# Nullability of type argument doesn't match 'notnull' constraint.
resharper_c_sharp_warnings_cs8714_highlighting = none # -
# Nullability of type of parameter doesn't match implemented member (possibly because of nullability attributes).
resharper_c_sharp_warnings_cs8769_highlighting = none # -
# Nullability of type of parameter doesn't match implicitly implemented member (possibly because of nullability attributes).
resharper_c_sharp_warnings_cs8767_highlighting = none # -
# Nullability of type of parameter doesn't match overridden member (possibly because of nullability attributes).
resharper_c_sharp_warnings_cs8765_highlighting = none # -
# Nullable value type may be null.
resharper_c_sharp_warnings_cs8629_highlighting = none # -
# Object or collection initializer implicitly dereferences possibly null member.
resharper_c_sharp_warnings_cs8670_highlighting = none # -
# Obsolete member overrides non-obsolete member
resharper_c_sharp_warnings_cs0809_highlighting = none # -
# Obsolete members should not be required.
resharper_c_sharp_warnings_cs9042_highlighting = none # -
# Operator '==' or operator '!=' with 'Object.Equals(object o)' and 'Object.GetHashCode()' not overridden
resharper_c_sharp_warnings_cs0660_cs0661_highlighting = none # -
# Opt in to preview features before using them.
resharper_c_sharp_warnings_ca2252_highlighting = none # -
# Parameter has no matching param tag in the XML comment
resharper_c_sharp_warnings_cs1573_highlighting = none # -
# Parameter has params modifier in lambda but not in target delegate type.
resharper_c_sharp_warnings_cs9100_highlighting = none # -
# Parameter is captured into the state of the enclosing type and its value is also passed to the base constructor. The value might be captured by the base class as well.
resharper_c_sharp_warnings_cs9107_highlighting = none # -
# Parameter is captured into the state of the enclosing type and its value is also used to initialize a field, property, or event.
resharper_c_sharp_warnings_cs9124_highlighting = none # -
# Parameter must conditionally have a non-null value when exiting a function.
resharper_c_sharp_warnings_cs8762_highlighting = none # -
# Parameter must have a non-null value when exiting because parameter mentioned in [NotNullIfNotNull] annotation is non-null.
resharper_c_sharp_warnings_cs8824_highlighting = none # -
# Parameter must have a non-null value when exiting.
resharper_c_sharp_warnings_cs8777_highlighting = none # -
# Parameter occurs after interpolated string handler parameter in the parameter list.
resharper_c_sharp_warnings_cs8947_highlighting = none # -
# Partial method declarations have inconsistent nullability for type parameter.
resharper_c_sharp_warnings_cs8667_highlighting = none # -
# Partial property declarations have signature differences.
resharper_c_sharp_warnings_cs9256_highlighting = none # -
# Possible mistaken empty statement
resharper_c_sharp_warnings_cs0642_highlighting = none # -
# Possible null reference argument for a parameter.
resharper_c_sharp_warnings_cs8604_highlighting = none # -
# Possible null reference assignment.
resharper_c_sharp_warnings_cs8601_highlighting = none # -
# Possible null reference return.
resharper_c_sharp_warnings_cs8603_highlighting = none # -
# Possible unintended reference comparison
resharper_c_sharp_warnings_cs0252_cs0253_highlighting = none # -
# Possibly incorrect assignment to local which is the argument to a 'using' or 'lock' statement
resharper_c_sharp_warnings_cs0728_highlighting = none # -
# Primary constructor parameter is shadowed by a member from base type.
resharper_c_sharp_warnings_cs9179_highlighting = none # -
# Record defined 'Equals' but not 'GetHashCode'
resharper_c_sharp_warnings_cs8851_highlighting = none # -
# Reference kind modifier of parameter doesn't match the corresponding parameter in hidden member.
resharper_c_sharp_warnings_cs9197_highlighting = none # -
# Reference kind modifier of parameter doesn't match the corresponding parameter in overridden or implemented member.
resharper_c_sharp_warnings_cs9196_highlighting = none # -
# Reference kind modifier of parameter doesn't match the corresponding parameter in target.
resharper_c_sharp_warnings_cs9198_highlighting = none # -
# Reference to a volatile field will not be treated as volatile
resharper_c_sharp_warnings_cs0420_highlighting = none # -
# Return value must be non-null because parameter mentioned in [NotNullIfNotNull] annotation is non-null.
resharper_c_sharp_warnings_cs8825_highlighting = none # -
# Signatures of interceptable and interceptor methods do not match
resharper_c_sharp_warnings_cs9154_highlighting = none # -
# Source file has exceeded the limit of 16,707,565 lines representable in the PDB; debug information will be incorrect
resharper_c_sharp_warnings_cs1687_highlighting = none # -
# Static type in 'is' or 'as' operator.
resharper_c_sharp_warnings_cs7023_highlighting = none # -
# Struct member returns 'this' or other instance members by reference.
resharper_c_sharp_warnings_cs9084_highlighting = none # -
# Syntax error in XML comment
resharper_c_sharp_warnings_cs1584_highlighting = none # -
# Taking address of marshal-by-reference class field
resharper_c_sharp_warnings_cs0197_highlighting = none # -
# The '&' operator should not be used on parameters or local variables in async methods.
resharper_c_sharp_warnings_cs9123_highlighting = none # -
# The annotation for nullable reference types should only be used in code within a '#nullable' annotations context.
resharper_c_sharp_warnings_cs8632_highlighting = none # -
# The annotation for nullable reference types should only be used in code within a '#nullable' annotations context. Auto-generated code requires an explicit '#nullable' directive in source.
resharper_c_sharp_warnings_cs8669_highlighting = none # -
# The branches of the ref conditional operator refer to variables with incompatible declaration scopes.
resharper_c_sharp_warnings_cs9086_highlighting = none # -
# The CallerArgumentExpressionAttribute applied to parameter will have no effect because it's self-referential
resharper_c_sharp_warnings_cs8965_highlighting = none # -
# The CallerArgumentExpressionAttribute is applied with an invalid parameter name.
resharper_c_sharp_warnings_cs8963_highlighting = none # -
# The CallerArgumentExpressionAttribute will have no effect because it applies to a member that is used in contexts that do not allow optional arguments
resharper_c_sharp_warnings_cs8966_highlighting = none # -
# The CallerArgumentExpressionAttribute will have no effect; it is overridden by the CallerFilePathAttribute
resharper_c_sharp_warnings_cs8961_highlighting = none # -
# The CallerArgumentExpressionAttribute will have no effect; it is overridden by the CallerLineNumberAttribute
resharper_c_sharp_warnings_cs8960_highlighting = none # -
# The CallerArgumentExpressionAttribute will have no effect; it is overridden by the CallerMemberNameAttribute
resharper_c_sharp_warnings_cs8962_highlighting = none # -
# The default parameter value does not match in the target delegate type.
resharper_c_sharp_warnings_cs9099_highlighting = none # -
# The 'EnumeratorCancellation' attribute is only effective on a parameter of type 'CancellationToken' in an async-iterator method returning 'IAsyncEnumerable<>'.
resharper_c_sharp_warnings_cs8424_highlighting = none # -
# The given expression always matches the provided constant.
resharper_c_sharp_warnings_cs8520_highlighting = none # -
# The given expression never matches the provided pattern.
resharper_c_sharp_warnings_cs8519_highlighting = none # -
# The 'l' suffix is easily confused with the digit '1'
resharper_c_sharp_warnings_cs0078_highlighting = none # -
# The 'Main' method will not be used as an entry point because compilation unit with top-level statements was found.
resharper_c_sharp_warnings_cs7022_highlighting = none # -
# The 'ref' modifier for an argument corresponding to 'in' parameter is equivalent to 'in'. Consider using 'in' instead.
resharper_c_sharp_warnings_cs9191_highlighting = none # -
# The 'ref' modifier for an argument corresponding to 'in' parameter is equivalent to 'in'. Consider using 'in' instead.
resharper_c_sharp_warnings_cs9192_highlighting = none # -
# The result of the expression is always 'null' of nullable type
resharper_c_sharp_warnings_cs0458_highlighting = none # -
# The result of the expression is always 'true' or 'false' since a value of value type is never equal to 'null'
resharper_c_sharp_warnings_cs0472_highlighting = none # -
# The result of the expression is always 'true' or 'false' since a value of value type is never equal to 'null'
resharper_c_sharp_warnings_cs8073_highlighting = none # -
# The 'scoped' modifier of a parameter doesn't match target delegate.
resharper_c_sharp_warnings_cs9073_highlighting = none # -
# The 'scoped' modifier of parameter doesn't match overridden or implemented member.
resharper_c_sharp_warnings_cs9074_highlighting = none # -
# The switch expression does not handle all possible inputs (it is not exhaustive).
resharper_c_sharp_warnings_cs8509_highlighting = none # -
# The switch expression does not handle all possible values of its input type (it is not exhaustive). However, a pattern with a 'when' clause might successfully match this value.
resharper_c_sharp_warnings_cs8846_highlighting = none # -
# The switch expression does not handle some null inputs (it is not exhaustive).
resharper_c_sharp_warnings_cs8655_highlighting = none # -
# The switch expression does not handle some null inputs (it is not exhaustive). However, a pattern with a 'when' clause might successfully match this value.
resharper_c_sharp_warnings_cs8847_highlighting = none # -
# The switch expression does not handle some values of its input type (it is not exhaustive) involving an unnamed enum value.
resharper_c_sharp_warnings_cs8524_highlighting = none # -
# The tuple element name is ignored because a different name or no name is specified by the target type.
resharper_c_sharp_warnings_cs8123_highlighting = none # -
# The tuple element name is ignored because a different name or no name is specified on the other side of the tuple == or != operator.
resharper_c_sharp_warnings_cs8383_highlighting = none # -
# The type name only contains lower-cased ASCII characters. Such names may become reserved for the language
resharper_c_sharp_warnings_cs8981_highlighting = none # -
# There is no defined ordering between fields in multiple declarations of partial struct. To specify an ordering, all instance fields must be in the same declaration.
resharper_c_sharp_warnings_cs0282_highlighting = none # -
# This ref-assigns a value that can only escape the current method through a return statement.
resharper_c_sharp_warnings_cs9093_highlighting = none # -
# This ref-assigns a value that has a wider value escape scope than the target allowing assignment through the target of values with narrower escapes scopes.
resharper_c_sharp_warnings_cs9097_highlighting = none # -
# This ref-assigns an expression to a variable with a narrower escape scope.
resharper_c_sharp_warnings_cs9085_highlighting = none # -
# This returns a member of local by reference but it is not a ref local.
resharper_c_sharp_warnings_cs9092_highlighting = none # -
# This returns a parameter by reference but it is not a ref parameter.
resharper_c_sharp_warnings_cs9087_highlighting = none # -
# This returns a parameter by reference but it is scoped to the current method.
resharper_c_sharp_warnings_cs9088_highlighting = none # -
# This returns a parameter by reference through a ref parameter; but it can only safely be returned in a return statement.
resharper_c_sharp_warnings_cs9094_highlighting = none # -
# This returns by reference a member of parameter that is not a ref or out parameter.
resharper_c_sharp_warnings_cs9089_highlighting = none # -
# This returns by reference a member of parameter that is scoped to the current method.
resharper_c_sharp_warnings_cs9090_highlighting = none # -
# This returns by reference a member of parameter through a ref parameter; but it can only safely be returned in a return statement.
resharper_c_sharp_warnings_cs9095_highlighting = none # -
# This returns local by reference but it is not a ref local.
resharper_c_sharp_warnings_cs9091_highlighting = none # -
# This takes the address of, gets the size of, or declares a pointer to a managed type.
resharper_c_sharp_warnings_cs8500_highlighting = none # -
# Thrown value may be null.
resharper_c_sharp_warnings_cs8597_highlighting = none # -
# Type is already listed in the interface list with different nullability of reference types.
resharper_c_sharp_warnings_cs8645_highlighting = none # -
# Type is for evaluation purposes only and is subject to change or removal in future updates.
resharper_c_sharp_warnings_cs8305_highlighting = none # -
# Type is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed.
resharper_c_sharp_warnings_cs9204_highlighting = none # -
# Type parameter has no matching typeparam tag in the XML comment
resharper_c_sharp_warnings_cs1712_highlighting = none # -
# Type parameter has the same name as a type parameter from the outer type
resharper_c_sharp_warnings_cs0693_highlighting = none # -
# Types and aliases should not be named 'record'
resharper_c_sharp_warnings_cs8860_highlighting = none # -
# Unable to include XML fragment
resharper_c_sharp_warnings_cs1589_highlighting = none # -
# Unassigned field
resharper_unassigned_field_compiler_highlighting = none # -
# Unassigned readonly field
resharper_unassigned_readonly_field_compiler_highlighting = none # -
# Unboxing a possibly null value.
resharper_c_sharp_warnings_cs8605_highlighting = none # -
# Unresolved Shader name
resharper_shader_lab_shader_reference_not_resolved_highlighting = none # -
# Unused local variable
resharper_unused_variable_compiler_highlighting = none # -
# Use of a variable in this context may expose referenced variables outside of their declaration scope.
resharper_c_sharp_warnings_cs9080_highlighting = none # -
# Use of obsolete symbol
resharper_c_sharp_warnings_cs0618_highlighting = none # -
# Use of obsolete symbol (without message)
resharper_c_sharp_warnings_cs0612_highlighting = none # -
# Using 'is' to test compatibility with 'dynamic' is essentially identical to testing compatibility with 'Object' and will succeed for all non-null values
resharper_c_sharp_warnings_cs1981_highlighting = none # -
# XML comment has a 'param' tag for 'Parameter', but there is no parameter by that name
resharper_c_sharp_warnings_cs1572_highlighting = none # -
# XML comment has a 'typeparam' tag for 'TypeParameter', but there is no type parameter by that name
resharper_c_sharp_warnings_cs1711_highlighting = none # -
# XML comment has cref attribute that refers to a type parameter
resharper_c_sharp_warnings_cs1723_highlighting = none # -
# XML comment is not placed on a valid language element
resharper_c_sharp_warnings_cs1587_highlighting = none # -
# Base type is required [RequiredBaseTypesIsNotInherited] | https://www.jetbrains.com/help/resharper/RequiredBaseTypesIsNotInherited.html
resharper_required_base_types_is_not_inherited_highlighting = error # +
# BaseTypeRequired attribute supports only classes and interfaces [UnsupportedRequiredBaseType] | https://www.jetbrains.com/help/resharper/UnsupportedRequiredBaseType.html
resharper_unsupported_required_base_type_highlighting = error # +
# Inconsistent Naming [InconsistentNaming] | https://www.jetbrains.com/help/resharper/InconsistentNaming.html
resharper_inconsistent_naming_highlighting = none # + - rejected
# Namespace does not correspond to file location [CheckNamespace] | https://www.jetbrains.com/help/resharper/CheckNamespace.html
resharper_check_namespace_highlighting = error # + d
# Non-nullable or required member is not initialized at constructor exit [NotNullOrRequiredMemberIsNotInitialized] | https://www.jetbrains.com/help/resharper/NotNullOrRequiredMemberIsNotInitialized.html
resharper_not_null_or_required_member_is_not_initialized_highlighting = none # + rejected
# Possible 'null' assignment to non-nullable entity [AssignNullToNotNullAttribute] | https://www.jetbrains.com/help/resharper/AssignNullToNotNullAttribute.html
resharper_assign_null_to_not_null_attribute_highlighting = error # +
# Possible violation of 'ValueRange'/'NonNegativeValue' attribute [ValueRangeAttributeViolation] | https://www.jetbrains.com/help/resharper/ValueRangeAttributeViolation.html
resharper_value_range_attribute_violation_highlighting = error # +
# Problem in contract annotation definition [ContractAnnotationNotParsed] | https://www.jetbrains.com/help/resharper/ContractAnnotationNotParsed.html
resharper_contract_annotation_not_parsed_highlighting = error # +
# Required base type conflicting another type [RequiredBaseTypesConflict] | https://www.jetbrains.com/help/resharper/RequiredBaseTypesConflict.html
resharper_required_base_types_conflict_highlighting = error # +
# Type specified in '[BaseTypeRequired]' attribute conflicts another type [RequiredBaseTypesDirectConflict] | https://www.jetbrains.com/help/resharper/RequiredBaseTypesDirectConflict.html
resharper_required_base_types_direct_conflict_highlighting = error # +
# Values of types marked with 'CannotApplyEqualityOperatorAttribute' should be compared using 'Equals()' [CannotApplyEqualityOperatorToType] | https://www.jetbrains.com/help/resharper/CannotApplyEqualityOperatorToType.html
resharper_cannot_apply_equality_operator_to_type_highlighting = error # +
# Database function must not be called in non-database context [EntityFramework.ClientSideDbFunctionCall] | https://www.jetbrains.com/help/resharper/EntityFramework.ClientSideDbFunctionCall.html
resharper_entity_framework_client_side_db_function_call_highlighting = error # +
# Function is not convertible to SQL and must not be called in the database context [EntityFramework.UnsupportedServerSideFunctionCall] | https://www.jetbrains.com/help/resharper/EntityFramework.UnsupportedServerSideFunctionCall.html
resharper_entity_framework_unsupported_server_side_function_call_highlighting = error # +
# Possible multiple queries to the database (N+1 problem) [EntityFramework.NPlusOne.Usage] | https://www.jetbrains.com/help/resharper/EntityFramework.NPlusOne.Usage.html
resharper_entity_framework_n_plus_one_usage_highlighting = error # +
# Possible multiple queries to the database for related entities (N+1 problem) [EntityFramework.NPlusOne.Query] | https://www.jetbrains.com/help/resharper/EntityFramework.NPlusOne.Query.html
resharper_entity_framework_n_plus_one_query_highlighting = error # +
# Possible performance issues caused by unlimited string length [EntityFramework.ModelValidation.UnlimitedStringLength] | https://www.jetbrains.com/help/resharper/EntityFramework.ModelValidation.UnlimitedStringLength.html
resharper_entity_framework_model_validation_unlimited_string_length_highlighting = none # + -
# Query can return incomplete data for related entities [EntityFramework.NPlusOne.IncompleteDataQuery] | https://www.jetbrains.com/help/resharper/EntityFramework.NPlusOne.IncompleteDataQuery.html
resharper_entity_framework_n_plus_one_incomplete_data_query_highlighting = error # +
# The relationship defined by this property contributes to a dependency loop [EntityFramework.ModelValidation.CircularDependency] | https://www.jetbrains.com/help/resharper/EntityFramework.ModelValidation.CircularDependency.html
resharper_entity_framework_model_validation_circular_dependency_highlighting = error # +
# Usage of navigational property can return incomplete data [EntityFramework.NPlusOne.IncompleteDataUsage] | https://www.jetbrains.com/help/resharper/EntityFramework.NPlusOne.IncompleteDataUsage.html
resharper_entity_framework_n_plus_one_incomplete_data_usage_highlighting = error # +
# Incorrect blank lines (blank lines are missing elsewhere) [MissingBlankLines] | https://www.jetbrains.com/help/resharper/MissingBlankLines.html
resharper_missing_blank_lines_highlighting = none # - d
# Incorrect blank lines (blank lines are redundant elsewhere) [RedundantBlankLines] | https://www.jetbrains.com/help/resharper/RedundantBlankLines.html
resharper_redundant_blank_lines_highlighting = none # - d
# Incorrect blank lines (incorrect number of blank lines near braces) [IncorrectBlankLinesNearBraces] | https://www.jetbrains.com/help/resharper/IncorrectBlankLinesNearBraces.html
resharper_incorrect_blank_lines_near_braces_highlighting = none # - d
# Incorrect indent (around child statement) [BadChildStatementIndent] | https://www.jetbrains.com/help/resharper/BadChildStatementIndent.html
resharper_bad_child_statement_indent_highlighting = none # - d
# Incorrect indent (around declaration braces) [BadDeclarationBracesIndent] | https://www.jetbrains.com/help/resharper/BadDeclarationBracesIndent.html
resharper_bad_declaration_braces_indent_highlighting = none # - d
# Incorrect indent (around expression braces) [BadExpressionBracesIndent] | https://www.jetbrains.com/help/resharper/BadExpressionBracesIndent.html
resharper_bad_expression_braces_indent_highlighting = none # - d
# Incorrect indent (around namespace braces) [BadNamespaceBracesIndent] | https://www.jetbrains.com/help/resharper/BadNamespaceBracesIndent.html
resharper_bad_namespace_braces_indent_highlighting = none # - d
# Incorrect indent (around preprocessor directive) [BadPreprocessorIndent] | https://www.jetbrains.com/help/resharper/BadPreprocessorIndent.html
resharper_bad_preprocessor_indent_highlighting = none # - d
# Incorrect indent (around statement braces) [BadControlBracesIndent] | https://www.jetbrains.com/help/resharper/BadControlBracesIndent.html
resharper_bad_control_braces_indent_highlighting = none # - d
# Incorrect indent (around switch statement) [BadSwitchBracesIndent] | https://www.jetbrains.com/help/resharper/BadSwitchBracesIndent.html
resharper_bad_switch_braces_indent_highlighting = none # - d
# Incorrect indent (incorrect indent size) [WrongIndentSize] | https://www.jetbrains.com/help/resharper/WrongIndentSize.html
resharper_wrong_indent_size_highlighting = none # - d
# Incorrect indent (indent level is not restored) [OutdentIsOffPrevLevel] | https://www.jetbrains.com/help/resharper/OutdentIsOffPrevLevel.html
resharper_outdent_is_off_prev_level_highlighting = none # - d
# Incorrect indent (missing indent/outdent elsewhere) [MissingIndent] | https://www.jetbrains.com/help/resharper/MissingIndent.html
resharper_missing_indent_highlighting = none # - d
# Incorrect indent (redundant indent/outdent elsewhere) [BadIndent] | https://www.jetbrains.com/help/resharper/BadIndent.html
resharper_bad_indent_highlighting = none # - d
# Incorrect indent (tabs/spaces mismatch) [TabsAndSpacesMismatch] | https://www.jetbrains.com/help/resharper/TabsAndSpacesMismatch.html
resharper_tabs_and_spaces_mismatch_highlighting = none # - d
# Incorrect line breaks (around comma in lists) [BadListLineBreaks] | https://www.jetbrains.com/help/resharper/BadListLineBreaks.html
resharper_bad_list_line_breaks_highlighting = none # - d
# Incorrect line breaks (around declaration braces) [BadDeclarationBracesLineBreaks] | https://www.jetbrains.com/help/resharper/BadDeclarationBracesLineBreaks.html
resharper_bad_declaration_braces_line_breaks_highlighting = none # - d
# Incorrect line breaks (around empty braces) [BadEmptyBracesLineBreaks] | https://www.jetbrains.com/help/resharper/BadEmptyBracesLineBreaks.html
resharper_bad_empty_braces_line_breaks_highlighting = none # - d
# Incorrect line breaks (around expression braces) [BadExpressionBracesLineBreaks] | https://www.jetbrains.com/help/resharper/BadExpressionBracesLineBreaks.html
resharper_bad_expression_braces_line_breaks_highlighting = none # - d
# Incorrect line breaks (around LINQ queries) [BadLinqLineBreaks] | https://www.jetbrains.com/help/resharper/BadLinqLineBreaks.html
resharper_bad_linq_line_breaks_highlighting = none # - d
# Incorrect line breaks (around parenthesis) [BadParensLineBreaks] | https://www.jetbrains.com/help/resharper/BadParensLineBreaks.html
resharper_bad_parens_line_breaks_highlighting = none # - d
# Incorrect line breaks (around statement braces) [BadControlBracesLineBreaks] | https://www.jetbrains.com/help/resharper/BadControlBracesLineBreaks.html
resharper_bad_control_braces_line_breaks_highlighting = none # - d
# Incorrect line breaks (line break is missing elsewhere) [MissingLinebreak] | https://www.jetbrains.com/help/resharper/MissingLinebreak.html
resharper_missing_linebreak_highlighting = none # - d
# Incorrect line breaks (line break is redundant elsewhere) [RedundantLinebreak] | https://www.jetbrains.com/help/resharper/RedundantLinebreak.html
resharper_redundant_linebreak_highlighting = none # - d
# Incorrect line breaks (multiple statements on one line) [MultipleStatementsOnOneLine] | https://www.jetbrains.com/help/resharper/MultipleStatementsOnOneLine.html
resharper_multiple_statements_on_one_line_highlighting = none # - d
# Incorrect line breaks (multiple type members on one line) [MultipleTypeMembersOnOneLine] | https://www.jetbrains.com/help/resharper/MultipleTypeMembersOnOneLine.html
resharper_multiple_type_members_on_one_line_highlighting = none # - d
# Incorrect spacing (around attributes) [BadAttributeBracketsSpaces] | https://www.jetbrains.com/help/resharper/BadAttributeBracketsSpaces.html
resharper_bad_attribute_brackets_spaces_highlighting = none # - d
# Incorrect spacing (around braces) [BadBracesSpaces] | https://www.jetbrains.com/help/resharper/BadBracesSpaces.html
resharper_bad_braces_spaces_highlighting = none # - d
# Incorrect spacing (around colon) [BadColonSpaces] | https://www.jetbrains.com/help/resharper/BadColonSpaces.html
resharper_bad_colon_spaces_highlighting = none # - d
# Incorrect spacing (around comma) [BadCommaSpaces] | https://www.jetbrains.com/help/resharper/BadCommaSpaces.html
resharper_bad_comma_spaces_highlighting = none # - d
# Incorrect spacing (around generic brackets) [BadGenericBracketsSpaces] | https://www.jetbrains.com/help/resharper/BadGenericBracketsSpaces.html
resharper_bad_generic_brackets_spaces_highlighting = none # - d
# Incorrect spacing (around member access symbols) [BadMemberAccessSpaces] | https://www.jetbrains.com/help/resharper/BadMemberAccessSpaces.html
resharper_bad_member_access_spaces_highlighting = none # - d
# Incorrect spacing (around operator symbols) [BadSymbolSpaces] | https://www.jetbrains.com/help/resharper/BadSymbolSpaces.html
resharper_bad_symbol_spaces_highlighting = none # - d
# Incorrect spacing (around parenthesis) [BadParensSpaces] | https://www.jetbrains.com/help/resharper/BadParensSpaces.html
resharper_bad_parens_spaces_highlighting = none # - d
# Incorrect spacing (around semicolon) [BadSemicolonSpaces] | https://www.jetbrains.com/help/resharper/BadSemicolonSpaces.html
resharper_bad_semicolon_spaces_highlighting = none # - d
# Incorrect spacing (around square brackets within a statement) [BadSquareBracketsSpaces] | https://www.jetbrains.com/help/resharper/BadSquareBracketsSpaces.html
resharper_bad_square_brackets_spaces_highlighting = none # - d
# Incorrect spacing (between keyword and parenthesis) [BadSpacesAfterKeyword] | https://www.jetbrains.com/help/resharper/BadSpacesAfterKeyword.html
resharper_bad_spaces_after_keyword_highlighting = none # - d
# Incorrect spacing (multiple spaces are prohibited) [MultipleSpaces] | https://www.jetbrains.com/help/resharper/MultipleSpaces.html
resharper_multiple_spaces_highlighting = none # - d
# Incorrect spacing (space is missing elsewhere) [MissingSpace] | https://www.jetbrains.com/help/resharper/MissingSpace.html
resharper_missing_space_highlighting = none # - d
# Incorrect spacing (space is redundant elsewhere) [RedundantSpace] | https://www.jetbrains.com/help/resharper/RedundantSpace.html
resharper_redundant_space_highlighting = none # - d
# Incorrect spacing (tabs are prohibited here) [TabsOutsideIndent] | https://www.jetbrains.com/help/resharper/TabsOutsideIndent.html
resharper_tabs_outside_indent_highlighting = none # - d
# Grammar error in comment [GrammarMistakeInComment] | https://www.jetbrains.com/help/resharper/GrammarMistakeInComment.html
resharper_grammar_mistake_in_comment_highlighting = none # ++ not work
# Grammar error in markup attribute value [GrammarMistakeInMarkupAttribute] | https://www.jetbrains.com/help/resharper/GrammarMistakeInMarkupAttribute.html
resharper_grammar_mistake_in_markup_attribute_highlighting = none # ++ not work
# Grammar error in markup text [GrammarMistakeInMarkupText] | https://www.jetbrains.com/help/resharper/GrammarMistakeInMarkupText.html
resharper_grammar_mistake_in_markup_text_highlighting = none # ++ not work
# Grammar error in string literal [GrammarMistakeInStringLiteral] | https://www.jetbrains.com/help/resharper/GrammarMistakeInStringLiteral.html
resharper_grammar_mistake_in_string_literal_highlighting = none # ++ not work
# Append to collection expression [AppendToCollectionExpression] | https://www.jetbrains.com/help/resharper/AppendToCollectionExpression.html
resharper_append_to_collection_expression_highlighting = error # +
# Class cannot be instantiated [ClassCannotBeInstantiated] | https://www.jetbrains.com/help/resharper/ClassCannotBeInstantiated.html
resharper_class_cannot_be_instantiated_highlighting = error
# Conditional expression can be rewritten as null-coalescing [ReplaceConditionalExpressionWithNullCoalescing] | https://www.jetbrains.com/help/resharper/ReplaceConditionalExpressionWithNullCoalescing.html
resharper_replace_conditional_expression_with_null_coalescing_highlighting = error # +
# Convert 'as' expression type check and the following null check into negated pattern matching [UseNegatedPatternMatching] | https://www.jetbrains.com/help/resharper/UseNegatedPatternMatching.html
resharper_use_negated_pattern_matching_highlighting = error # +
# Convert 'as' expression type check and the following null check into pattern matching [UsePatternMatching] | https://www.jetbrains.com/help/resharper/UsePatternMatching.html
resharper_use_pattern_matching_highlighting = error # +
# Convert constructor into member initializers [ConvertConstructorToMemberInitializers] | https://www.jetbrains.com/help/resharper/ConvertConstructorToMemberInitializers.html
resharper_convert_constructor_to_member_initializers_highlighting = error
# Convert constructor into primary constructor [ConvertToPrimaryConstructor] | https://www.jetbrains.com/help/resharper/ConvertToPrimaryConstructor.html
resharper_convert_to_primary_constructor_highlighting = none # -
# Convert delegate variable into local function [ConvertToLocalFunction] | https://www.jetbrains.com/help/resharper/ConvertToLocalFunction.html
resharper_convert_to_local_function_highlighting = none # -
# Convert 'if' statement into 'switch' [ConvertIfStatementToSwitchStatement] | https://www.jetbrains.com/help/resharper/ConvertIfStatementToSwitchStatement.html
resharper_convert_if_statement_to_switch_statement_highlighting = none # -
# Convert into 'await using' statement or declaration [UseAwaitUsing] | https://www.jetbrains.com/help/resharper/UseAwaitUsing.html
resharper_use_await_using_highlighting = error # + d
# Convert into lambda expression [ConvertToLambdaExpression] | https://www.jetbrains.com/help/resharper/ConvertToLambdaExpression.html
resharper_convert_to_lambda_expression_highlighting = none # + rejected
# Convert into static class [ConvertToStaticClass] | https://www.jetbrains.com/help/resharper/ConvertToStaticClass.html
resharper_convert_to_static_class_highlighting = error # +
# Convert into 'using' declaration [ConvertToUsingDeclaration] | https://www.jetbrains.com/help/resharper/ConvertToUsingDeclaration.html
resharper_convert_to_using_declaration_highlighting = error # +
# Convert lambda expression into method group [ConvertClosureToMethodGroup] | https://www.jetbrains.com/help/resharper/ConvertClosureToMethodGroup.html
resharper_convert_closure_to_method_group_highlighting = none # + rejected
# Convert negated 'is' expression into 'is' expression with negated pattern [UseNegatedPatternInIsExpression] | https://www.jetbrains.com/help/resharper/UseNegatedPatternInIsExpression.html
resharper_use_negated_pattern_in_is_expression_highlighting = error # +
# Convert 'Nullable<T>' into 'T?' [ConvertNullableToShortForm] | https://www.jetbrains.com/help/resharper/ConvertNullableToShortForm.html
resharper_convert_nullable_to_short_form_highlighting = error # +
# Convert property into auto-property [ConvertToAutoProperty] | https://www.jetbrains.com/help/resharper/ConvertToAutoProperty.html
resharper_convert_to_auto_property_highlighting = error # + d
# Convert property into auto-property (when possible) [ConvertToAutoPropertyWhenPossible] | https://www.jetbrains.com/help/resharper/ConvertToAutoPropertyWhenPossible.html
resharper_convert_to_auto_property_when_possible_highlighting = error # + d
# Convert property into auto-property with private setter [ConvertToAutoPropertyWithPrivateSetter] | https://www.jetbrains.com/help/resharper/ConvertToAutoPropertyWithPrivateSetter.html
resharper_convert_to_auto_property_with_private_setter_highlighting = error # +
# Convert static method invocation into extension method call
resharper_invoke_as_extension_method_highlighting = none # error
# Foreach loop can be converted into LINQ-expression but another 'GetEnumerator' method will be used [ForeachCanBeConvertedToQueryUsingAnotherGetEnumerator] | https://www.jetbrains.com/help/resharper/ForeachCanBeConvertedToQueryUsingAnotherGetEnumerator.html
resharper_foreach_can_be_converted_to_query_using_another_get_enumerator_highlighting = none # + rejected
# For-loop can be converted into foreach-loop [ForCanBeConvertedToForeach] | https://www.jetbrains.com/help/resharper/ForCanBeConvertedToForeach.html
resharper_for_can_be_converted_to_foreach_highlighting = error # +
# 'if' statement can be rewritten as '?:' expression [ConvertIfStatementToConditionalTernaryExpression] | https://www.jetbrains.com/help/resharper/ConvertIfStatementToConditionalTernaryExpression.html
resharper_convert_if_statement_to_conditional_ternary_expression_highlighting = error
# 'if' statement can be rewritten as '??' expression [ConvertIfStatementToNullCoalescingExpression] | https://www.jetbrains.com/help/resharper/ConvertIfStatementToNullCoalescingExpression.html
resharper_convert_if_statement_to_null_coalescing_expression_highlighting = error # +
# 'if' statement can be rewritten as '??=' assignment [ConvertIfStatementToNullCoalescingAssignment] | https://www.jetbrains.com/help/resharper/ConvertIfStatementToNullCoalescingAssignment.html
resharper_convert_if_statement_to_null_coalescing_assignment_highlighting = error # +
# 'if-return' statement can be rewritten as 'return' statement [ConvertIfStatementToReturnStatement] | https://www.jetbrains.com/help/resharper/ConvertIfStatementToReturnStatement.html
resharper_convert_if_statement_to_return_statement_highlighting = none # + rejected
# Inline 'out' variable declaration [InlineOutVariableDeclaration] | https://www.jetbrains.com/help/resharper/InlineOutVariableDeclaration.html
resharper_inline_out_variable_declaration_highlighting = error # +
# Inline temporary variable [InlineTemporaryVariable] | https://www.jetbrains.com/help/resharper/InlineTemporaryVariable.html
resharper_inline_temporary_variable_highlighting = error # +
# Introduce optional parameters (non-private accessibility) [IntroduceOptionalParameters.Global] | https://www.jetbrains.com/help/resharper/IntroduceOptionalParameters.Global.html
resharper_introduce_optional_parameters_global_highlighting = error # +
# Introduce optional parameters (private accessibility) [IntroduceOptionalParameters.Local] | https://www.jetbrains.com/help/resharper/IntroduceOptionalParameters.Local.html
resharper_introduce_optional_parameters_local_highlighting = error # +
# Invert 'if' statement to reduce nesting [InvertIf] | https://www.jetbrains.com/help/resharper/InvertIf.html
resharper_invert_if_highlighting = none # rejected
# Join null check with assignment [JoinNullCheckWithUsage] | https://www.jetbrains.com/help/resharper/JoinNullCheckWithUsage.html
resharper_join_null_check_with_usage_highlighting = error # + d
# Lambda expression/anonymous method can be made 'static' [LambdaExpressionCanBeMadeStatic] | https://www.jetbrains.com/help/resharper/LambdaExpressionCanBeMadeStatic.html
resharper_lambda_expression_can_be_made_static_highlighting = none # -
# Lambda expression/anonymous method must be 'static' to avoid allocations [LambdaExpressionMustBeStatic] | https://www.jetbrains.com/help/resharper/LambdaExpressionMustBeStatic.html
resharper_lambda_expression_must_be_static_highlighting = none # -
# Lambda expression/anonymous method must not have captures of the containing context [LambdaShouldNotCaptureContext] | https://www.jetbrains.com/help/resharper/LambdaShouldNotCaptureContext.html
resharper_lambda_should_not_capture_context_highlighting = error # +
# Literal length can be reduced by using verbatim string [UseVerbatimString] | https://www.jetbrains.com/help/resharper/UseVerbatimString.html
resharper_use_verbatim_string_highlighting = error # +
# Loop can be converted into LINQ-expression [LoopCanBeConvertedToQuery] | https://www.jetbrains.com/help/resharper/LoopCanBeConvertedToQuery.html
resharper_loop_can_be_converted_to_query_highlighting = none # + rejected
# Merge 'and' pattern [MergeAndPattern] | https://www.jetbrains.com/help/resharper/MergeAndPattern.html
resharper_merge_and_pattern_highlighting = error # +
# Merge conditional ?: expression into conditional access
resharper_merge_conditional_expression_highlighting = none
# Merge negated null/pattern checks into complex pattern [MergeConditionalExpression] | https://www.jetbrains.com/help/resharper/MergeConditionalExpression.html
resharper_merge_into_negated_pattern_highlighting = error # + d
# Merge nested property patterns [MergeNestedPropertyPatterns] | https://www.jetbrains.com/help/resharper/MergeNestedPropertyPatterns.html
resharper_merge_nested_property_patterns_highlighting = error # +
# Merge null/pattern checks into complex pattern [MergeIntoPattern] | https://www.jetbrains.com/help/resharper/MergeIntoPattern.html
resharper_merge_into_pattern_highlighting = error # +
# Merge null/pattern/value checks into 'or'/'and' patterns [MergeIntoLogicalPattern] | https://www.jetbrains.com/help/resharper/MergeIntoLogicalPattern.html
resharper_merge_into_logical_pattern_highlighting = error # +
# Merge sequential checks into single conditional access check [MergeSequentialChecks] | https://www.jetbrains.com/help/resharper/MergeSequentialChecks.html
resharper_merge_sequential_checks_highlighting = error
# Move to existing positional deconstruction pattern [MoveToExistingPositionalDeconstructionPattern] | https://www.jetbrains.com/help/resharper/MoveToExistingPositionalDeconstructionPattern.html
resharper_move_to_existing_positional_deconstruction_pattern_highlighting = none # -
# Move variable declaration inside loop condition [MoveVariableDeclarationInsideLoopCondition] | https://www.jetbrains.com/help/resharper/MoveVariableDeclarationInsideLoopCondition.html
resharper_move_variable_declaration_inside_loop_condition_highlighting = none # -
# Part of foreach loop can be converted into LINQ-expression but another 'GetEnumerator' method will be used [ForeachCanBePartlyConvertedToQueryUsingAnotherGetEnumerator] | https://www.jetbrains.com/help/resharper/ForeachCanBePartlyConvertedToQueryUsingAnotherGetEnumerator.html
resharper_foreach_can_be_partly_converted_to_query_using_another_get_enumerator_highlighting = none # -
# Part of loop's body can be converted into LINQ-expression [LoopCanBePartlyConvertedToQuery] | https://www.jetbrains.com/help/resharper/LoopCanBePartlyConvertedToQuery.html
resharper_loop_can_be_partly_converted_to_query_highlighting = none # -
# Pass string interpolation expression [PassStringInterpolation] | https://www.jetbrains.com/help/resharper/PassStringInterpolation.html
resharper_pass_string_interpolation_highlighting = error # +
# Redundant accessor body [RedundantAccessorBody] | https://www.jetbrains.com/help/resharper/RedundantAccessorBody.html
resharper_redundant_accessor_body_highlighting = error # +
# Redundant spread element [RedundantSpreadElement] | https://www.jetbrains.com/help/resharper/RedundantSpreadElement.html
resharper_redundant_spread_element_highlighting = error # +
# Replace auto-property with computed property [ReplaceAutoPropertyWithComputedProperty] | https://www.jetbrains.com/help/resharper/ReplaceAutoPropertyWithComputedProperty.html
resharper_replace_auto_property_with_computed_property_highlighting = none # -
# Replace if statement with null-propagating code [UseNullPropagation] | https://www.jetbrains.com/help/resharper/UseNullPropagation.html
resharper_use_null_propagation_highlighting = error
# Replace object pattern not performing any additional checks with 'var' pattern [ReplaceObjectPatternWithVarPattern] | https://www.jetbrains.com/help/resharper/ReplaceObjectPatternWithVarPattern.html
resharper_replace_object_pattern_with_var_pattern_highlighting = error # +
# Replace 'SequenceEqual' with constant pattern [ReplaceSequenceEqualWithConstantPattern] | https://www.jetbrains.com/help/resharper/ReplaceSequenceEqualWithConstantPattern.html
resharper_replace_sequence_equal_with_constant_pattern_highlighting = error # +
# Replace 'Slice' with range indexer [ReplaceSliceWithRangeIndexer] | https://www.jetbrains.com/help/resharper/ReplaceSliceWithRangeIndexer.html
resharper_replace_slice_with_range_indexer_highlighting = none # -
# Replace 'Substring' with range indexer [ReplaceSubstringWithRangeIndexer] | https://www.jetbrains.com/help/resharper/ReplaceSubstringWithRangeIndexer.html
resharper_replace_substring_with_range_indexer_highlighting = none # -
# Replace 'switch' statement with 'switch' expression [ConvertSwitchStatementToSwitchExpression] | https://www.jetbrains.com/help/resharper/ConvertSwitchStatementToSwitchExpression.html
resharper_convert_switch_statement_to_switch_expression_highlighting = error # ++
# Replace ternary expression with 'switch' expression [ConvertConditionalTernaryExpressionToSwitchExpression] | https://www.jetbrains.com/help/resharper/ConvertConditionalTernaryExpressionToSwitchExpression.html
resharper_convert_conditional_ternary_expression_to_switch_expression_highlighting = error
# Replace with 'field' keyword [ReplaceWithFieldKeyword] | https://www.jetbrains.com/help/resharper/ReplaceWithFieldKeyword.html
resharper_replace_with_field_keyword_highlighting = error # +
# Replace with primary constructor parameter [ReplaceWithPrimaryConstructorParameter] | https://www.jetbrains.com/help/resharper/ReplaceWithPrimaryConstructorParameter.html
resharper_replace_with_primary_constructor_parameter_highlighting = none # -
# Use alias [UseSymbolAlias] | https://www.jetbrains.com/help/resharper/UseSymbolAlias.html
resharper_use_symbol_alias_highlighting = none # -
# Use collection expression syntax [UseCollectionExpression] | https://www.jetbrains.com/help/resharper/UseCollectionExpression.html
resharper_use_collection_expression_highlighting = none # + rejected
# Use compound assignment [ConvertToCompoundAssignment] | https://www.jetbrains.com/help/resharper/ConvertToCompoundAssignment.html
resharper_convert_to_compound_assignment_highlighting = error # + d
# Use compound assignment [ConvertToNullCoalescingCompoundAssignment] | https://www.jetbrains.com/help/resharper/ConvertToNullCoalescingCompoundAssignment.html
resharper_convert_to_null_coalescing_compound_assignment_highlighting = error # + d
# Use deconstruction [UseDeconstruction] | https://www.jetbrains.com/help/resharper/UseDeconstruction.html
resharper_use_deconstruction_highlighting = error
# Use deconstruction to swap variables [SwapViaDeconstruction] | https://www.jetbrains.com/help/resharper/SwapViaDeconstruction.html
resharper_swap_via_deconstruction_highlighting = error # +
# Use discard assignment [UseDiscardAssignment] | https://www.jetbrains.com/help/resharper/UseDiscardAssignment.html
resharper_use_discard_assignment_highlighting = error # +
# Use index from end expression [UseIndexFromEndExpression] | https://www.jetbrains.com/help/resharper/UseIndexFromEndExpression.html
resharper_use_index_from_end_expression_highlighting = none # -
# Use 'nameof' expression to reference enum member name [UseNameOfInsteadOfToString] | https://www.jetbrains.com/help/resharper/UseNameOfInsteadOfToString.html
resharper_use_name_of_instead_of_to_string_highlighting = error # +
# Use 'nameof' expression to reference name [UseNameofExpression] | https://www.jetbrains.com/help/resharper/UseNameofExpression.html
resharper_use_nameof_expression_highlighting = none # error
# Use 'nameof' expression to reference name in part of the string literal [UseNameofExpressionForPartOfTheString] | https://www.jetbrains.com/help/resharper/UseNameofExpressionForPartOfTheString.html
resharper_use_nameof_expression_for_part_of_the_string_highlighting = error
# Use 'nameof' expression to reference type name [UseNameOfInsteadOfTypeOf] | https://www.jetbrains.com/help/resharper/UseNameOfInsteadOfTypeOf.html
resharper_use_name_of_instead_of_type_of_highlighting = error # +
# Use 'nameof' expression when registering a DependencyProperty [UseNameofForDependencyProperty] | https://www.jetbrains.com/help/resharper/UseNameofForDependencyProperty.html
resharper_use_nameof_for_dependency_property_highlighting = error # +
# Use object or collection initializer when possible [UseObjectOrCollectionInitializer] | https://www.jetbrains.com/help/resharper/UseObjectOrCollectionInitializer.html
resharper_use_object_or_collection_initializer_highlighting = error # +
# Use positional deconstruction pattern [UsePositionalDeconstructionPattern] | https://www.jetbrains.com/help/resharper/UsePositionalDeconstructionPattern.html
resharper_use_positional_deconstruction_pattern_highlighting = none # -
# Use raw string [UseRawString] | https://www.jetbrains.com/help/resharper/UseRawString.html
resharper_use_raw_string_highlighting = error # +
# Use string interpolation expression [UseStringInterpolation] | https://www.jetbrains.com/help/resharper/UseStringInterpolation.html
resharper_use_string_interpolation_highlighting = error # +
# Use type annotation syntax [UseNullableReferenceTypesAnnotationSyntax] | https://www.jetbrains.com/help/resharper/UseNullableReferenceTypesAnnotationSyntax.html
resharper_use_nullable_reference_types_annotation_syntax_highlighting = error # +
# Use unsigned right shift operator '>>>' [UseUnsignedRightShiftOperator] | https://www.jetbrains.com/help/resharper/UseUnsignedRightShiftOperator.html
resharper_use_unsigned_right_shift_operator_highlighting = none # -
# Use UTF-8 string literal [UseUtf8StringLiteral] | https://www.jetbrains.com/help/resharper/UseUtf8StringLiteral.html
resharper_use_utf8_string_literal_highlighting = error # +
# Use 'with' expression to copy anonymous object [UseWithExpressionToCopyAnonymousObject] | https://www.jetbrains.com/help/resharper/UseWithExpressionToCopyAnonymousObject.html
resharper_use_with_expression_to_copy_anonymous_object_highlighting = error # +
# Use 'with' expression to copy record [UseWithExpressionToCopyRecord] | https://www.jetbrains.com/help/resharper/UseWithExpressionToCopyRecord.html
resharper_use_with_expression_to_copy_record_highlighting = error # +
# Use 'with' expression to copy struct [UseWithExpressionToCopyStruct] | https://www.jetbrains.com/help/resharper/UseWithExpressionToCopyStruct.html
resharper_use_with_expression_to_copy_struct_highlighting = error # +
# Use 'with' expression to copy tuple [UseWithExpressionToCopyTuple] | https://www.jetbrains.com/help/resharper/UseWithExpressionToCopyTuple.html
resharper_use_with_expression_to_copy_tuple_highlighting = error # +
# NUnit. Async test method must return Task or Task<T> [NUnit.AsyncMethodMustBeTask] | https://www.jetbrains.com/help/resharper/NUnit.AsyncMethodMustBeTask.html
resharper_n_unit_async_method_must_be_task_highlighting = error # + d
# NUnit. Duplicate values. [NUnit.DuplicateValues] | https://www.jetbrains.com/help/resharper/NUnit.DuplicateValues.html
resharper_n_unit_duplicate_values_highlighting = error # +
# NUnit. Ignored parameter attribute. [NUnit.IgnoredParameterAttribute] | https://www.jetbrains.com/help/resharper/NUnit.IgnoredParameterAttribute.html
resharper_n_unit_ignored_parameter_attribute_highlighting = error # +
# NUnit. Implicitly unspecified null values. [NUnit.ImplicitUnspecifiedNullValues] | https://www.jetbrains.com/help/resharper/NUnit.ImplicitUnspecifiedNullValues.html
resharper_n_unit_implicit_unspecified_null_values_highlighting = error # +
# NUnit. Incompatible argument type or incorrect argument value. [NUnit.IncorrectArgumentType] | https://www.jetbrains.com/help/resharper/NUnit.IncorrectArgumentType.html
resharper_n_unit_incorrect_argument_type_highlighting = error # +
# NUnit. Incompatible expected result type or incorrect value. [NUnit.IncorrectExpectedResultType] | https://www.jetbrains.com/help/resharper/NUnit.IncorrectExpectedResultType.html
resharper_n_unit_incorrect_expected_result_type_highlighting = error # +
# NUnit. Incorrect range bounds. 'to' must be greater than or equal to 'from'. [NUnit.IncorrectRangeBounds] | https://www.jetbrains.com/help/resharper/NUnit.IncorrectRangeBounds.html
resharper_n_unit_incorrect_range_bounds_highlighting = error # +
# NUnit. Mismatch of the range step sign. [NUnit.RangeStepSignMismatch] | https://www.jetbrains.com/help/resharper/NUnit.RangeStepSignMismatch.html
resharper_n_unit_range_step_sign_mismatch_highlighting = error # +
# NUnit. Missing arguments in TestCase attribute. [NUnit.MissingArgumentsInTestCaseAttribute] | https://www.jetbrains.com/help/resharper/NUnit.MissingArgumentsInTestCaseAttribute.html
resharper_n_unit_missing_arguments_in_test_case_attribute_highlighting = error # +
# NUnit. Missing 'CancelAfter' attribute on test method declaration. [NUnit.MissingCancelAfterAttribute] | https://www.jetbrains.com/help/resharper/NUnit.MissingCancelAfterAttribute.html
resharper_n_unit_missing_cancel_after_attribute_highlighting = error # +
# NUnit. Missing expected result for non-void test method. [NUnit.TestCaseAttributeRequiresExpectedResult] | https://www.jetbrains.com/help/resharper/NUnit.TestCaseAttributeRequiresExpectedResult.html
resharper_n_unit_test_case_attribute_requires_expected_result_highlighting = error # +
# NUnit. No values provided in the attributes. [NUnit.NoValuesProvided] | https://www.jetbrains.com/help/resharper/NUnit.NoValuesProvided.html
resharper_n_unit_no_values_provided_highlighting = error # +
# NUnit. Non-public test method. [NUnit.NonPublicMethodWithTestAttribute] | https://www.jetbrains.com/help/resharper/NUnit.NonPublicMethodWithTestAttribute.html
resharper_n_unit_non_public_method_with_test_attribute_highlighting = error # +
# NUnit. Range 'step' parameter value must be non-zero. [NUnit.RangeStepValueMustNotBeZero] | https://www.jetbrains.com/help/resharper/NUnit.RangeStepValueMustNotBeZero.html
resharper_n_unit_range_step_value_must_not_be_zero_highlighting = error # +
# NUnit. Redundant argument in TestCase attribute. [NUnit.RedundantArgumentInTestCaseAttribute] | https://www.jetbrains.com/help/resharper/NUnit.RedundantArgumentInTestCaseAttribute.html
resharper_n_unit_redundant_argument_in_test_case_attribute_highlighting = error # +
# NUnit. Redundant argument instead of ExpectedResult. [NUnit.RedundantArgumentInsteadOfExpectedResult] | https://www.jetbrains.com/help/resharper/NUnit.RedundantArgumentInsteadOfExpectedResult.html
resharper_n_unit_redundant_argument_instead_of_expected_result_highlighting = error # +
# NUnit. Redundant expected result for void test method. [NUnit.RedundantExpectedResultInTestCaseAttribute] | https://www.jetbrains.com/help/resharper/NUnit.RedundantExpectedResultInTestCaseAttribute.html
resharper_n_unit_redundant_expected_result_in_test_case_attribute_highlighting = error # +
# NUnit. Specified attribute values produce too many tests. [NUnit.AttributeProducesTooManyTests] | https://www.jetbrains.com/help/resharper/NUnit.AttributeProducesTooManyTests.html
resharper_n_unit_attribute_produces_too_many_tests_highlighting = none # -
# NUnit. Specified values are not compatible with the test parameter type. [NUnit.ParameterTypeIsNotCompatibleWithAttribute] | https://www.jetbrains.com/help/resharper/NUnit.ParameterTypeIsNotCompatibleWithAttribute.html
resharper_n_unit_parameter_type_is_not_compatible_with_attribute_highlighting = error # +
# NUnit. Test case Result property duplicates ExpectedResult. [NUnit.TestCaseResultPropertyDuplicatesExpectedResult] | https://www.jetbrains.com/help/resharper/NUnit.TestCaseResultPropertyDuplicatesExpectedResult.html
resharper_n_unit_test_case_result_property_duplicates_expected_result_highlighting = error # +
# NUnit. Test case Result property is obsolete. [NUnit.TestCaseResultPropertyIsObsolete] | https://www.jetbrains.com/help/resharper/NUnit.TestCaseResultPropertyIsObsolete.html
resharper_n_unit_test_case_result_property_is_obsolete_highlighting = error # +
# NUnit. Test case source must be field, property, or method. [NUnit.TestCaseSourceMustBeFieldPropertyMethod] | https://www.jetbrains.com/help/resharper/NUnit.TestCaseSourceMustBeFieldPropertyMethod.html
resharper_n_unit_test_case_source_must_be_field_property_method_highlighting = error # +
# NUnit. Test case source must be non-abstract and implement IEnumerable. [NUnit.TestCaseSourceShouldImplementIEnumerable] | https://www.jetbrains.com/help/resharper/NUnit.TestCaseSourceShouldImplementIEnumerable.html
resharper_n_unit_test_case_source_should_implement_i_enumerable_highlighting = error # +
# NUnit. Test case source must be static. [NUnit.TestCaseSourceMustBeStatic] | https://www.jetbrains.com/help/resharper/NUnit.TestCaseSourceMustBeStatic.html
resharper_n_unit_test_case_source_must_be_static_highlighting = error # +
# NUnit. The maximum range value is not reachable with the step value. [NUnit.RangeToValueIsNotReachable] | https://www.jetbrains.com/help/resharper/NUnit.RangeToValueIsNotReachable.html
resharper_n_unit_range_to_value_is_not_reachable_highlighting = error # +
# NUnit. Values for test method parameters are not provided. [NUnit.MethodWithParametersAndTestAttribute] | https://www.jetbrains.com/help/resharper/NUnit.MethodWithParametersAndTestAttribute.html
resharper_n_unit_method_with_parameters_and_test_attribute_highlighting = error # +
# NUnit. Values in range do not fit the type of the test parameter. [NUnit.RangeAttributeBoundsAreOutOfRange] | https://www.jetbrains.com/help/resharper/NUnit.RangeAttributeBoundsAreOutOfRange.html
resharper_n_unit_range_attribute_bounds_are_out_of_range_highlighting = error # +
# NUnit.AutoFixture. Incompatible argument type or incorrect argument value. [NUnit.AutoFixture.IncorrectArgumentType] | https://www.jetbrains.com/help/resharper/NUnit.AutoFixture.IncorrectArgumentType.html
resharper_n_unit_auto_fixture_incorrect_argument_type_highlighting = error # +
# NUnit.AutoFixture. Missing Test or TestFixture attribute. [NUnit.AutoFixture.MissedTestOrTestFixtureAttribute] | https://www.jetbrains.com/help/resharper/NUnit.AutoFixture.MissedTestOrTestFixtureAttribute.html
resharper_n_unit_auto_fixture_missed_test_or_test_fixture_attribute_highlighting = error # +
# NUnit.AutoFixture. Redundant argument in InlineAutoData attribute. [NUnit.AutoFixture.RedundantArgumentInInlineAutoDataAttribute] | https://www.jetbrains.com/help/resharper/NUnit.AutoFixture.RedundantArgumentInInlineAutoDataAttribute.html
resharper_n_unit_auto_fixture_redundant_argument_in_inline_auto_data_attribute_highlighting = error # +
# '?:' expression has identical true and false branches [ConditionalTernaryEqualBranch] | https://www.jetbrains.com/help/resharper/ConditionalTernaryEqualBranch.html
resharper_conditional_ternary_equal_branch_highlighting = error # +
# [MustDisposeResource] annotation is not inherited from the base constructor and should be placed explicitly [ConstructorWithMustDisposeResourceAttributeBaseIsNotAnnotated] | https://www.jetbrains.com/help/resharper/ConstructorWithMustDisposeResourceAttributeBaseIsNotAnnotated.html
resharper_constructor_with_must_dispose_resource_attribute_base_is_not_annotated_highlighting = error # +
# [ThreadStatic] does not work with instance fields [ThreadStaticAtInstanceField] | https://www.jetbrains.com/help/resharper/ThreadStaticAtInstanceField.html
resharper_thread_static_at_instance_field_highlighting = error # +
# A suppressed nullable warning might hide an underlying problem [NullableWarningSuppressionIsUsed] | https://www.jetbrains.com/help/resharper/NullableWarningSuppressionIsUsed.html
resharper_nullable_warning_suppression_is_used_highlighting = none # rejected
# Abstract or virtual (overridable) event is never invoked [EventNeverInvoked.Global] | https://www.jetbrains.com/help/resharper/EventNeverInvoked.Global.html
resharper_event_never_invoked_global_highlighting = error # +
# Access to disposed captured variable [AccessToDisposedClosure] | https://www.jetbrains.com/help/resharper/AccessToDisposedClosure.html
resharper_access_to_disposed_closure_highlighting = none # rejected
# Access to foreach variable in closure [AccessToForEachVariableInClosure] | https://www.jetbrains.com/help/resharper/AccessToForEachVariableInClosure.html
resharper_access_to_for_each_variable_in_closure_highlighting = error # +
# Access to modified captured variable [AccessToModifiedClosure] | https://www.jetbrains.com/help/resharper/AccessToModifiedClosure.html
resharper_access_to_modified_closure_highlighting = none # + rejected
# According to values of the bit masks, expression result will always be the same [NonConstantEqualityExpressionHasConstantResult] | https://www.jetbrains.com/help/resharper/NonConstantEqualityExpressionHasConstantResult.html
resharper_non_constant_equality_expression_has_constant_result_highlighting = error # +
# Actual shift count equals zero [ShiftExpressionRealShiftCountIsZero] | https://www.jetbrains.com/help/resharper/ShiftExpressionRealShiftCountIsZero.html
resharper_shift_expression_real_shift_count_is_zero_highlighting = error # +
# Ambiguous symbols in text argument [MultipleResolveCandidatesInText] | https://www.jetbrains.com/help/resharper/MultipleResolveCandidatesInText.html
resharper_multiple_resolve_candidates_in_text_highlighting = error # +
# Annotation conflict in hierarchy [AnnotationConflictInHierarchy] | https://www.jetbrains.com/help/resharper/AnnotationConflictInHierarchy.html
resharper_annotation_conflict_in_hierarchy_highlighting = error # +
# Assignment in conditional expression [AssignmentInConditionalExpression] | https://www.jetbrains.com/help/resharper/AssignmentInConditionalExpression.html
resharper_assignment_in_conditional_expression_highlighting = error # + d
# Async iterator invocation without 'await foreach' [AsyncIteratorInvocationWithoutAwaitForeach] | https://www.jetbrains.com/help/resharper/AsyncIteratorInvocationWithoutAwaitForeach.html
resharper_async_iterator_invocation_without_await_foreach_highlighting = error # +
# Auto-property accessor is never used (non-private accessibility) [UnusedAutoPropertyAccessor.Global] | https://www.jetbrains.com/help/resharper/UnusedAutoPropertyAccessor.Global.html
resharper_unused_auto_property_accessor_global_highlighting = none # rejected
# Auto-property accessor is never used (private accessibility) [UnusedAutoPropertyAccessor.Local] | https://www.jetbrains.com/help/resharper/UnusedAutoPropertyAccessor.Local.html
resharper_unused_auto_property_accessor_local_highlighting = none # rejected
# Avoid mixing of variable-length escape sequences and text [VariableLengthStringHexEscapeSequence] | https://www.jetbrains.com/help/resharper/VariableLengthStringHexEscapeSequence.html
resharper_variable_length_string_hex_escape_sequence_highlighting = error # +
# Avoid using 'async' for methods and functions with the 'void' return type [AsyncVoidMethod] | https://www.jetbrains.com/help/resharper/AsyncVoidMethod.html
resharper_async_void_method_highlighting = error # +
# Avoid using 'async' lambda when delegate type returns 'void' [AsyncVoidLambda] | https://www.jetbrains.com/help/resharper/AsyncVoidLambda.html
resharper_async_void_lambda_highlighting = error # ++
# Backing field is assigned but never used [PropertyFieldKeywordIsNeverUsed] | https://www.jetbrains.com/help/resharper/PropertyFieldKeywordIsNeverUsed.html
resharper_property_field_keyword_is_never_used_highlighting = error # +
# Backing field is used but never assigned [PropertyFieldKeywordIsNeverAssigned] | https://www.jetbrains.com/help/resharper/PropertyFieldKeywordIsNeverAssigned.html
resharper_property_field_keyword_is_never_assigned_highlighting = error # +
# Bitwise operation on enum that is not marked by the [Flags] attribute [BitwiseOperatorOnEnumWithoutFlags] | https://www.jetbrains.com/help/resharper/BitwiseOperatorOnEnumWithoutFlags.html
resharper_bitwise_operator_on_enum_without_flags_highlighting = error # +
# Call to base member with implicit default parameters [BaseMethodCallWithDefaultParameter] | https://www.jetbrains.com/help/resharper/BaseMethodCallWithDefaultParameter.html
resharper_base_method_call_with_default_parameter_highlighting = error
# Call to 'base.Equals(...)' is reference equality [BaseObjectEqualsIsObjectEquals] | https://www.jetbrains.com/help/resharper/BaseObjectEqualsIsObjectEquals.html
resharper_base_object_equals_is_object_equals_highlighting = error # +
# Cannot access static symbol in text argument [StaticProblemInText] | https://www.jetbrains.com/help/resharper/StaticProblemInText.html
resharper_static_problem_in_text_highlighting = error # +
# Cannot access symbol in text argument [AccessRightsInText] | https://www.jetbrains.com/help/resharper/AccessRightsInText.html
resharper_access_rights_in_text_highlighting = error # +
# Cannot resolve property [PropertyNotResolved] | https://www.jetbrains.com/help/resharper/PropertyNotResolved.html
resharper_property_not_resolved_highlighting = error # +
# Cannot resolve resource [ResourceNotResolved] | https://www.jetbrains.com/help/resharper/ResourceNotResolved.html
resharper_resource_not_resolved_highlighting = error # +
# Cannot resolve resource item [ResourceItemNotResolved] | https://www.jetbrains.com/help/resharper/ResourceItemNotResolved.html
resharper_resource_item_not_resolved_highlighting = error # +
# Cannot resolve symbol in text argument [NotResolvedInText] | https://www.jetbrains.com/help/resharper/NotResolvedInText.html
resharper_not_resolved_in_text_highlighting = error # +
# Captured field reference of a marshal-by-reference class may cause a runtime exception [AddressOfMarshalByRefObject] | https://www.jetbrains.com/help/resharper/AddressOfMarshalByRefObject.html
resharper_address_of_marshal_by_ref_object_highlighting = error # +
# Captured primary constructor parameter is mutable [CapturedPrimaryConstructorParameterIsMutable] | https://www.jetbrains.com/help/resharper/CapturedPrimaryConstructorParameterIsMutable.html
resharper_captured_primary_constructor_parameter_is_mutable_highlighting = error # +
# Captured reference to 'volatile' field will not be treated as 'volatile' [ByRefArgumentIsVolatileField] | https://www.jetbrains.com/help/resharper/ByRefArgumentIsVolatileField.html
resharper_by_ref_argument_is_volatile_field_highlighting = error # +
# Char is possibly unintentionally used as integer [ConfusingCharAsIntegerInConstructor] | https://www.jetbrains.com/help/resharper/ConfusingCharAsIntegerInConstructor.html
resharper_confusing_char_as_integer_in_constructor_highlighting = error # +
# Class is never instantiated (non-private accessibility) [ClassNeverInstantiated.Global] | https://www.jetbrains.com/help/resharper/ClassNeverInstantiated.Global.html
resharper_class_never_instantiated_global_highlighting = none # ++ rejected
# Class is never instantiated (private accessibility) [ClassNeverInstantiated.Local] | https://www.jetbrains.com/help/resharper/ClassNeverInstantiated.Local.html
resharper_class_never_instantiated_local_highlighting = none # ++ rejected
# Collection content is never queried (non-private accessibility) [CollectionNeverQueried.Global] | https://www.jetbrains.com/help/resharper/CollectionNeverQueried.Global.html
resharper_collection_never_queried_global_highlighting = error # +
# Collection content is never queried (private accessibility) [CollectionNeverQueried.Local] | https://www.jetbrains.com/help/resharper/CollectionNeverQueried.Local.html
resharper_collection_never_queried_local_highlighting = error # ++
# Collection is never updated (non-private accessibility) [CollectionNeverUpdated.Global] | https://www.jetbrains.com/help/resharper/CollectionNeverUpdated.Global.html
resharper_collection_never_updated_global_highlighting = error # +
# Collection is never updated (private accessibility) [CollectionNeverUpdated.Local] | https://www.jetbrains.com/help/resharper/CollectionNeverUpdated.Local.html
resharper_collection_never_updated_local_highlighting = error # ++
# Constant shift expression with non-zero operands results in a zero value [ShiftExpressionResultEqualsZero] | https://www.jetbrains.com/help/resharper/ShiftExpressionResultEqualsZero.html
resharper_shift_expression_result_equals_zero_highlighting = error # +
# Co-variant array conversion [CoVariantArrayConversion] | https://www.jetbrains.com/help/resharper/CoVariantArrayConversion.html
resharper_co_variant_array_conversion_highlighting = none # ++ rejected
# Disposal of a variable already captured by the 'using' statement [DisposeOnUsingVariable] | https://www.jetbrains.com/help/resharper/DisposeOnUsingVariable.html
resharper_dispose_on_using_variable_highlighting = error # +
# Division by zero in at least one execution path [IntDivisionByZero] | https://www.jetbrains.com/help/resharper/IntDivisionByZero.html
resharper_int_division_by_zero_highlighting = error # +
# Do not store SpinLock in readonly field [SpinLockInReadonlyField] | https://www.jetbrains.com/help/resharper/SpinLockInReadonlyField.html
resharper_spin_lock_in_readonly_field_highlighting = error # +
# Do not use object initializer for 'using' variable [UsingStatementResourceInitialization] | https://www.jetbrains.com/help/resharper/UsingStatementResourceInitialization.html
resharper_using_statement_resource_initialization_highlighting = error # +
# Do not use object initializer for 'using' variable (object initializer expression may throw exception while initializing 'using' variable) [UsingStatementResourceInitializationExpression] | https://www.jetbrains.com/help/resharper/UsingStatementResourceInitializationExpression.html
resharper_using_statement_resource_initialization_expression_highlighting = error # +
# Do not use right brace after a format specifier in format strings [FormatSpecifierCapturesRightBraces] | https://www.jetbrains.com/help/resharper/FormatSpecifierCapturesRightBraces.html
resharper_format_specifier_captures_right_braces_highlighting = error # +
# Duplicate keys in dictionary/set initialization [DuplicateKeyCollectionInitialization] | https://www.jetbrains.com/help/resharper/DuplicateKeyCollectionInitialization.html
resharper_duplicate_key_collection_initialization_highlighting = error # + d
# Duplicated chained 'if' branches [DuplicatedChainedIfBodies] | https://www.jetbrains.com/help/resharper/DuplicatedChainedIfBodies.html
resharper_duplicated_chained_if_bodies_highlighting = error # +
# Duplicated sequential 'if' branches [DuplicatedSequentialIfBodies] | https://www.jetbrains.com/help/resharper/DuplicatedSequentialIfBodies.html
resharper_duplicated_sequential_if_bodies_highlighting = none # + rejected
# Duplicated switch branches [DuplicatedSwitchSectionBodies] | https://www.jetbrains.com/help/resharper/DuplicatedSwitchSectionBodies.html
resharper_duplicated_switch_section_bodies_highlighting = error # +
# Element is localizable [LocalizableElement] | https://www.jetbrains.com/help/resharper/LocalizableElement.html
resharper_localizable_element_highlighting = error # + d
# Empty general catch clause [EmptyGeneralCatchClause] | https://www.jetbrains.com/help/resharper/EmptyGeneralCatchClause.html
resharper_empty_general_catch_clause_highlighting = none # -
# Empty 'with' expression is redundant [RedundantWithExpression] | https://www.jetbrains.com/help/resharper/RedundantWithExpression.html
resharper_redundant_with_expression_highlighting = error # +
# 'Enumerable.Sum' invocation in explicit unchecked context [EnumerableSumInExplicitUncheckedContext] | https://www.jetbrains.com/help/resharper/EnumerableSumInExplicitUncheckedContext.html
resharper_enumerable_sum_in_explicit_unchecked_context_highlighting = error # +
# Equality comparison of floating point numbers [CompareOfFloatsByEqualityOperator] | https://www.jetbrains.com/help/resharper/CompareOfFloatsByEqualityOperator.html
resharper_compare_of_floats_by_equality_operator_highlighting = error
# Escape sequence can be simplified [CanSimplifyStringEscapeSequence] | https://www.jetbrains.com/help/resharper/CanSimplifyStringEscapeSequence.html
resharper_can_simplify_string_escape_sequence_highlighting = error # +
# Event is never subscribed to (non-private accessibility) [EventNeverSubscribedTo.Global] | https://www.jetbrains.com/help/resharper/EventNeverSubscribedTo.Global.html
resharper_event_never_subscribed_to_global_highlighting = error # +
# Event is never subscribed to (private accessibility) [EventNeverSubscribedTo.Local] | https://www.jetbrains.com/help/resharper/EventNeverSubscribedTo.Local.html
resharper_event_never_subscribed_to_local_highlighting = error # +
# Event never invoked [EventNeverInvoked] | https://www.jetbrains.com/help/resharper/EventNeverInvoked.html
resharper_event_never_invoked_highlighting = error # +
# Event unsubscription via anonymous delegate [EventUnsubscriptionViaAnonymousDelegate] | https://www.jetbrains.com/help/resharper/EventUnsubscriptionViaAnonymousDelegate.html
resharper_event_unsubscription_via_anonymous_delegate_highlighting = error # +
# Exception rethrow possibly intended [PossibleIntendedRethrow] | https://www.jetbrains.com/help/resharper/PossibleIntendedRethrow.html
resharper_possible_intended_rethrow_highlighting = error # + d
# Explicit argument passed to parameter with caller info attribute [ExplicitCallerInfoArgument] | https://www.jetbrains.com/help/resharper/ExplicitCallerInfoArgument.html
resharper_explicit_caller_info_argument_highlighting = error # +
# Extract common code [ExtractCommonBranchingCode] | https://www.jetbrains.com/help/resharper/ExtractCommonBranchingCode.html
resharper_extract_common_branching_code_highlighting = error # ++
# Field hides property with default implementation in interface [FieldHidesInterfacePropertyWithDefaultImplementation] | https://www.jetbrains.com/help/resharper/FieldHidesInterfacePropertyWithDefaultImplementation.html
resharper_field_hides_interface_property_with_default_implementation_highlighting = error # +
# Formatting is specified, but interpolated string expression is not IFormattable [InterpolatedStringExpressionIsNotIFormattable] | https://www.jetbrains.com/help/resharper/InterpolatedStringExpressionIsNotIFormattable.html
resharper_interpolated_string_expression_is_not_i_formattable_highlighting = error # +
# Function body is too complex to analyze [FunctionComplexityOverflow] | https://www.jetbrains.com/help/resharper/FunctionComplexityOverflow.html
resharper_function_complexity_overflow_highlighting = error
# Function is recursive on all execution paths [FunctionRecursiveOnAllPaths] | https://www.jetbrains.com/help/resharper/FunctionRecursiveOnAllPaths.html
resharper_function_recursive_on_all_paths_highlighting = error # ++
# Function never returns [FunctionNeverReturns] | https://www.jetbrains.com/help/resharper/FunctionNeverReturns.html
resharper_function_never_returns_highlighting = error # +
# 'GC.SuppressFinalize' is invoked for type without destructor [GCSuppressFinalizeForTypeWithoutDestructor] | https://www.jetbrains.com/help/resharper/GCSuppressFinalizeForTypeWithoutDestructor.html
resharper_gc_suppress_finalize_for_type_without_destructor_highlighting = error # +
# Heuristically unreachable case according to integer analysis [UnreachableSwitchCaseDueToIntegerAnalysis] | https://www.jetbrains.com/help/resharper/UnreachableSwitchCaseDueToIntegerAnalysis.html
resharper_unreachable_switch_case_due_to_integer_analysis_highlighting = error # +
# Heuristically unreachable switch arm according to integer analysis [UnreachableSwitchArmDueToIntegerAnalysis] | https://www.jetbrains.com/help/resharper/UnreachableSwitchArmDueToIntegerAnalysis.html
resharper_unreachable_switch_arm_due_to_integer_analysis_highlighting = error # +
# Inconsistent arguments passed to 'Math.Clamp()' method [MathClampMinGreaterThanMax] | https://www.jetbrains.com/help/resharper/MathClampMinGreaterThanMax.html
resharper_math_clamp_min_greater_than_max_highlighting = error # +
# Inconsistent order of taken locks [InconsistentOrderOfLocks] | https://www.jetbrains.com/help/resharper/InconsistentOrderOfLocks.html
resharper_inconsistent_order_of_locks_highlighting = error # +
# Inconsistent synchronization on field [InconsistentlySynchronizedField] | https://www.jetbrains.com/help/resharper/InconsistentlySynchronizedField.html
resharper_inconsistently_synchronized_field_highlighting = error # +
# Index from end must be greater than zero; use '^1' to refer to the last element [ZeroIndexFromEnd] | https://www.jetbrains.com/help/resharper/ZeroIndexFromEnd.html
resharper_zero_index_from_end_highlighting = error # +
# Interfaces marked as ServiceContract should declare at least one OperationContract [ServiceContractWithoutOperations] | https://www.jetbrains.com/help/resharper/ServiceContractWithoutOperations.html
resharper_service_contract_without_operations_highlighting = error # +
# Invalid XML documentation comment [InvalidXmlDocComment] | https://www.jetbrains.com/help/resharper/InvalidXmlDocComment.html
resharper_invalid_xml_doc_comment_highlighting = error # +
# Invocation of polymorphic field-like event [PolymorphicFieldLikeEventInvocation] | https://www.jetbrains.com/help/resharper/PolymorphicFieldLikeEventInvocation.html
resharper_polymorphic_field_like_event_invocation_highlighting = error
# IQueryable is possibly unintentionally used as IEnumerable [PossibleUnintendedQueryableAsEnumerable] | https://www.jetbrains.com/help/resharper/PossibleUnintendedQueryableAsEnumerable.html
resharper_possible_unintended_queryable_as_enumerable_highlighting = error # +
# Iterator never returns [IteratorNeverReturns] | https://www.jetbrains.com/help/resharper/IteratorNeverReturns.html
resharper_iterator_never_returns_highlighting = error # +
# Local function hides method [LocalFunctionHidesMethod] | https://www.jetbrains.com/help/resharper/LocalFunctionHidesMethod.html
resharper_local_function_hides_method_highlighting = error # +
# Local variable hides member [LocalVariableHidesMember] | https://www.jetbrains.com/help/resharper/LocalVariableHidesMember.html
resharper_local_variable_hides_member_highlighting = error # ++
# Local variable hides primary constructor parameter [LocalVariableHidesPrimaryConstructorParameter] | https://www.jetbrains.com/help/resharper/LocalVariableHidesPrimaryConstructorParameter.html
resharper_local_variable_hides_primary_constructor_parameter_highlighting = error # +
# Loop control variable is never changed inside loop [LoopVariableIsNeverChangedInsideLoop] | https://www.jetbrains.com/help/resharper/LoopVariableIsNeverChangedInsideLoop.html
resharper_loop_variable_is_never_changed_inside_loop_highlighting = error # +
# Meaningless [HandlesResourceDisposal] annotation for an output parameter [OutParameterWithHandlesResourceDisposalAttribute] | https://www.jetbrains.com/help/resharper/OutParameterWithHandlesResourceDisposalAttribute.html
resharper_out_parameter_with_handles_resource_disposal_attribute_highlighting = error # +
# Meaningless [MustDisposeResource] annotation for an input parameter [InParameterWithMustDisposeResourceAttribute] | https://www.jetbrains.com/help/resharper/InParameterWithMustDisposeResourceAttribute.html
resharper_in_parameter_with_must_dispose_resource_attribute_highlighting = error # +
# Member hides static member from outer class [MemberHidesStaticFromOuterClass] | https://www.jetbrains.com/help/resharper/MemberHidesStaticFromOuterClass.html
resharper_member_hides_static_from_outer_class_highlighting = error # +
# Member initialized value ignored [MemberInitializerValueIgnored] | https://www.jetbrains.com/help/resharper/MemberInitializerValueIgnored.html
resharper_member_initializer_value_ignored_highlighting = error
# Method is marked as OperationContract but containing type is not marked as ServiceContract [OperationContractWithoutServiceContract] | https://www.jetbrains.com/help/resharper/OperationContractWithoutServiceContract.html
resharper_operation_contract_without_service_contract_highlighting = error # +
# Method with optional or 'params' parameter is hidden by overload [MethodOverloadWithOptionalParameter] | https://www.jetbrains.com/help/resharper/MethodOverloadWithOptionalParameter.html
resharper_method_overload_with_optional_parameter_highlighting = error # +
# Mismatch of optional parameter value in overridden method [OptionalParameterHierarchyMismatch] | https://www.jetbrains.com/help/resharper/OptionalParameterHierarchyMismatch.html
resharper_optional_parameter_hierarchy_mismatch_highlighting = error # +
# Missing '.ConfigureAwait(false)' for async disposable in library code [UseConfigureAwaitFalseForAsyncDisposable] | https://www.jetbrains.com/help/resharper/UseConfigureAwaitFalseForAsyncDisposable.html
resharper_use_configure_await_false_for_async_disposable_highlighting = none # - d
# Missing '.ConfigureAwait(false)' in library code [UseConfigureAwaitFalse] | https://www.jetbrains.com/help/resharper/UseConfigureAwaitFalse.html
resharper_use_configure_await_false_highlighting = none # - d
# Multiple sequential 'OrderBy' invocation [MultipleOrderBy] | https://www.jetbrains.com/help/resharper/MultipleOrderBy.html
resharper_multiple_order_by_highlighting = error # +
# Non-accessed field (non-private accessibility) [NotAccessedField.Global] | https://www.jetbrains.com/help/resharper/NotAccessedField.Global.html
resharper_not_accessed_field_global_highlighting = error # +
# Non-accessed field (private accessibility) [NotAccessedField.Local] | https://www.jetbrains.com/help/resharper/NotAccessedField.Local.html
resharper_not_accessed_field_local_highlighting = error
# Non-accessed positional property (non-private accessibility) [NotAccessedPositionalProperty.Global] | https://www.jetbrains.com/help/resharper/NotAccessedPositionalProperty.Global.html
resharper_not_accessed_positional_property_global_highlighting = error # +
# Non-accessed positional property (private accessibility) [NotAccessedPositionalProperty.Local] | https://www.jetbrains.com/help/resharper/NotAccessedPositionalProperty.Local.html
resharper_not_accessed_positional_property_local_highlighting = error # +
# Non-public member in implementation class hides default implementation in interface [MemberHidesInterfaceMemberWithDefaultImplementation] | https://www.jetbrains.com/help/resharper/MemberHidesInterfaceMemberWithDefaultImplementation.html
resharper_member_hides_interface_member_with_default_implementation_highlighting = error # +
# Non-readonly type member referenced in 'GetHashCode()' [NonReadonlyMemberInGetHashCode] | https://www.jetbrains.com/help/resharper/NonReadonlyMemberInGetHashCode.html
resharper_non_readonly_member_in_get_hash_code_highlighting = error # +
# Nullability conflicts with annotations in hierarchy [NullnessAnnotationConflictWithJetBrainsAnnotations] | https://www.jetbrains.com/help/resharper/NullnessAnnotationConflictWithJetBrainsAnnotations.html
resharper_nullness_annotation_conflict_with_jet_brains_annotations_highlighting = error # +
# Nullable warning suppression operator might be confused with inverted 'is' expression [SuppressNullableWarningExpressionAsInvertedIsExpression] | https://www.jetbrains.com/help/resharper/SuppressNullableWarningExpressionAsInvertedIsExpression.html
resharper_suppress_nullable_warning_expression_as_inverted_is_expression_highlighting = error # +
# 'Object.ReferenceEquals' is always false because it is called with value type [ReferenceEqualsWithValueType] | https://www.jetbrains.com/help/resharper/ReferenceEqualsWithValueType.html
resharper_reference_equals_with_value_type_highlighting = error # +
# One way operations must not return values [OneWayOperationContractWithReturnType] | https://www.jetbrains.com/help/resharper/OneWayOperationContractWithReturnType.html
resharper_one_way_operation_contract_with_return_type_highlighting = error # +
# Operator 'is'/'Type Of ... Is ...' can be used [OperatorIsCanBeUsed] | https://www.jetbrains.com/help/resharper/OperatorIsCanBeUsed.html
resharper_operator_is_can_be_used_highlighting = error # +
# Operator without matching checked operator [OperatorWithoutMatchedCheckedOperator] | https://www.jetbrains.com/help/resharper/OperatorWithoutMatchedCheckedOperator.html
resharper_operator_without_matched_checked_operator_highlighting = error # +
# Overridden GetHashCode calls base 'Object.GetHashCode()' [BaseObjectGetHashCodeCallInGetHashCode] | https://www.jetbrains.com/help/resharper/BaseObjectGetHashCodeCallInGetHashCode.html
resharper_base_object_get_hash_code_call_in_get_hash_code_highlighting = error # +
# Parameter hides member [ParameterHidesMember] | https://www.jetbrains.com/help/resharper/ParameterHidesMember.html
resharper_parameter_hides_member_highlighting = error # +
# Parameter hides primary constructor parameter [ParameterHidesPrimaryConstructorParameter] | https://www.jetbrains.com/help/resharper/ParameterHidesPrimaryConstructorParameter.html
resharper_parameter_hides_primary_constructor_parameter_highlighting = error # +
# Parameter name differs between partial member declarations [PartialMethodParameterNameMismatch] | https://www.jetbrains.com/help/resharper/PartialMethodParameterNameMismatch.html
resharper_partial_method_parameter_name_mismatch_highlighting = error # +
# Possible ambiguity while accessing member by interface [PossibleInterfaceMemberAmbiguity] | https://www.jetbrains.com/help/resharper/PossibleInterfaceMemberAmbiguity.html
resharper_possible_interface_member_ambiguity_highlighting = error # +
# Possible comparison of value type with 'null' [CompareNonConstrainedGenericWithNull] | https://www.jetbrains.com/help/resharper/CompareNonConstrainedGenericWithNull.html
resharper_compare_non_constrained_generic_with_null_highlighting = none # rejected
# Possible cyclic constructor call [ConstructorInitializerLoop] | https://www.jetbrains.com/help/resharper/ConstructorInitializerLoop.html
resharper_constructor_initializer_loop_highlighting = error # +
# Possible incorrect implementation of Double-Check Locking pattern. Possible multiple write access to checked field. [PossibleMultipleWriteAccessInDoubleCheckLocking] | https://www.jetbrains.com/help/resharper/PossibleMultipleWriteAccessInDoubleCheckLocking.html
resharper_possible_multiple_write_access_in_double_check_locking_highlighting = error # +
# Possible incorrect implementation of Double-Check Locking pattern. Read access to checked field. [ReadAccessInDoubleCheckLocking] | https://www.jetbrains.com/help/resharper/ReadAccessInDoubleCheckLocking.html
resharper_read_access_in_double_check_locking_highlighting = error # +
# Possible infinite inheritance [PossibleInfiniteInheritance] | https://www.jetbrains.com/help/resharper/PossibleInfiniteInheritance.html
resharper_possible_infinite_inheritance_highlighting = error # +
# Possible loss of fraction [PossibleLossOfFraction] | https://www.jetbrains.com/help/resharper/PossibleLossOfFraction.html
resharper_possible_loss_of_fraction_highlighting = error # +
# Possible mistaken argument of type 'System.Type' [PossibleMistakenSystemTypeArgument] | https://www.jetbrains.com/help/resharper/PossibleMistakenSystemTypeArgument.html
resharper_possible_mistaken_system_type_argument_highlighting = error # +
# Possible mistaken 'GetType()' invocation [PossibleMistakenCallToGetType] | https://www.jetbrains.com/help/resharper/PossibleMistakenCallToGetType.html
resharper_possible_mistaken_call_to_get_type_highlighting = error # ++
# Possible multiple enumeration [PossibleMultipleEnumeration] | https://www.jetbrains.com/help/resharper/PossibleMultipleEnumeration.html
resharper_possible_multiple_enumeration_highlighting = none # + rejected
# Possible overflow [IntVariableOverflow] | https://www.jetbrains.com/help/resharper/IntVariableOverflow.html
resharper_int_variable_overflow_highlighting = error # +
# Possible overflow in checked context [IntVariableOverflowInCheckedContext] | https://www.jetbrains.com/help/resharper/IntVariableOverflowInCheckedContext.html
resharper_int_variable_overflow_in_checked_context_highlighting = error # +
# Possible overflow in unchecked context [IntVariableOverflowInUncheckedContext] | https://www.jetbrains.com/help/resharper/IntVariableOverflowInUncheckedContext.html
resharper_int_variable_overflow_in_unchecked_context_highlighting = error # +
# Possible 'System.ArgumentOutOfRangeException'. Index must be a non-negative integer. [NegativeIndex] | https://www.jetbrains.com/help/resharper/NegativeIndex.html
resharper_negative_index_highlighting = error # +
# Possible 'System.ArgumentOutOfRangeException'. Start index must be less than or equal to end index. [IndexingByInvalidRange] | https://www.jetbrains.com/help/resharper/IndexingByInvalidRange.html
resharper_indexing_by_invalid_range_highlighting = error # +
# Possible 'System.InvalidCastException' [PossibleInvalidCastException] | https://www.jetbrains.com/help/resharper/PossibleInvalidCastException.html
resharper_possible_invalid_cast_exception_highlighting = error # +
# Possible 'System.InvalidCastException' in foreach loop [PossibleInvalidCastExceptionInForeachLoop] | https://www.jetbrains.com/help/resharper/PossibleInvalidCastExceptionInForeachLoop.html
resharper_possible_invalid_cast_exception_in_foreach_loop_highlighting = error # +
# Possible 'System.InvalidOperationException' [PossibleInvalidOperationException] | https://www.jetbrains.com/help/resharper/PossibleInvalidOperationException.html
resharper_possible_invalid_operation_exception_highlighting = error # +
# Possible 'System.InvalidOperationException: Collection was modified' [PossibleInvalidOperationExceptionCollectionWasModified] | https://www.jetbrains.com/help/resharper/PossibleInvalidOperationExceptionCollectionWasModified.html
resharper_possible_invalid_operation_exception_collection_was_modified_highlighting = error # +
# Possible 'System.NullReferenceException' [PossibleNullReferenceException] | https://www.jetbrains.com/help/resharper/PossibleNullReferenceException.html
resharper_possible_null_reference_exception_highlighting = error # +
# Possible unassigned object created by 'new' expression [ObjectCreationAsStatement] | https://www.jetbrains.com/help/resharper/ObjectCreationAsStatement.html
resharper_object_creation_as_statement_highlighting = error # +
# Possible unintended reference comparison [PossibleUnintendedReferenceComparison] | https://www.jetbrains.com/help/resharper/PossibleUnintendedReferenceComparison.html
resharper_possible_unintended_reference_comparison_highlighting = error # +
# Possibly impure struct method is called on readonly variable: struct value always copied before invocation [PossiblyImpureMethodCallOnReadonlyVariable] | https://www.jetbrains.com/help/resharper/PossiblyImpureMethodCallOnReadonlyVariable.html
resharper_possibly_impure_method_call_on_readonly_variable_highlighting = error # +
# Possibly misleading 'DefaultValueAttribute' usage to define optional parameter value [DefaultValueAttributeForOptionalParameter] | https://www.jetbrains.com/help/resharper/DefaultValueAttributeForOptionalParameter.html
resharper_default_value_attribute_for_optional_parameter_highlighting = error # +
# Possibly missing comma before indexer initializer [PossiblyMissingIndexerInitializerComma] | https://www.jetbrains.com/help/resharper/PossiblyMissingIndexerInitializerComma.html
resharper_possibly_missing_indexer_initializer_comma_highlighting = error # +
# Possibly mistaken use of a 'CancellationToken' [PossiblyMistakenUseOfCancellationToken] | https://www.jetbrains.com/help/resharper/PossiblyMistakenUseOfCancellationToken.html
resharper_possibly_mistaken_use_of_cancellation_token_highlighting = error # +
# Possibly unintended linear search in set [PossibleUnintendedLinearSearchInSet] | https://www.jetbrains.com/help/resharper/PossibleUnintendedLinearSearchInSet.html
resharper_possible_unintended_linear_search_in_set_highlighting = error # +
# Possibly unintended modification inside conditional invocation [PossiblyUnintendedSideEffectsInsideConditionalInvocation] | https://www.jetbrains.com/help/resharper/PossiblyUnintendedSideEffectsInsideConditionalInvocation.html
resharper_possibly_unintended_side_effects_inside_conditional_invocation_highlighting = error # +
# Possibly unintended string interpolation instead of format string template [PossiblyMistakenUseOfInterpolatedStringInsert] | https://www.jetbrains.com/help/resharper/PossiblyMistakenUseOfInterpolatedStringInsert.html
resharper_possibly_mistaken_use_of_interpolated_string_insert_highlighting = error # +
# Possibly wrong string comparison: spans are only equal when pointing to the same memory location [StringSpanComparison] | https://www.jetbrains.com/help/resharper/StringSpanComparison.html
resharper_string_span_comparison_highlighting = error # +
# Potentially misleading parameter name in lambda or local function [AllUnderscoreLocalParameterName] | https://www.jetbrains.com/help/resharper/AllUnderscoreLocalParameterName.html
resharper_all_underscore_local_parameter_name_highlighting = error # +
# Prefer explicitly provided tuple component name [PreferExplicitlyProvidedTupleComponentName] | https://www.jetbrains.com/help/resharper/PreferExplicitlyProvidedTupleComponentName.html
resharper_prefer_explicitly_provided_tuple_component_name_highlighting = error # +
# Primary constructor parameter capturing is disallowed [PrimaryConstructorParameterCaptureDisallowed] | https://www.jetbrains.com/help/resharper/PrimaryConstructorParameterCaptureDisallowed.html
resharper_primary_constructor_parameter_capture_disallowed_highlighting = error # +
# 'ref' or 'out' parameter with [Optional] attribute [OptionalParameterRefOut] | https://www.jetbrains.com/help/resharper/OptionalParameterRefOut.html
resharper_optional_parameter_ref_out_highlighting = error # +
# Return of a task produced by 'using'-captured object [ReturnOfTaskProducedByUsingVariable] | https://www.jetbrains.com/help/resharper/ReturnOfTaskProducedByUsingVariable.html
resharper_return_of_task_produced_by_using_variable_highlighting = error # +
# Return of a variable captured by 'using' statement [ReturnOfUsingVariable] | https://www.jetbrains.com/help/resharper/ReturnOfUsingVariable.html
resharper_return_of_using_variable_highlighting = error # +
# Return type of a function can be made non-nullable [ReturnTypeCanBeNotNullable] | https://www.jetbrains.com/help/resharper/ReturnTypeCanBeNotNullable.html
resharper_return_type_can_be_not_nullable_highlighting = none # + rejected
# Return value of [MustUseReturnValue]-annotated method is not used
resharper_must_use_return_value_highlighting = error # +
# Return value of a method annotated with [MustDisposeResource] is never disposed [NotDisposedResource] | https://www.jetbrains.com/help/resharper/NotDisposedResource.html
resharper_not_disposed_resource_highlighting = error # +
# Return value of a property must be disposed by the callee [NotDisposedResourceIsReturnedByProperty] | https://www.jetbrains.com/help/resharper/NotDisposedResourceIsReturnedByProperty.html
resharper_not_disposed_resource_is_returned_by_property_highlighting = error # +
# Return value of 'GetEnumerator' method call is never disposed [GenericEnumeratorNotDisposed] | https://www.jetbrains.com/help/resharper/GenericEnumeratorNotDisposed.html
resharper_generic_enumerator_not_disposed_highlighting = error # +
# Return value of iterator is not used [IteratorMethodResultIsIgnored] | https://www.jetbrains.com/help/resharper/IteratorMethodResultIsIgnored.html
resharper_iterator_method_result_is_ignored_highlighting = error # +
# Return value of pure method is not used [ReturnValueOfPureMethodIsNotUsed] | https://www.jetbrains.com/help/resharper/ReturnValueOfPureMethodIsNotUsed.html
resharper_return_value_of_pure_method_is_not_used_highlighting = error # ++
# Return value should be disposed but the method or function is not annotated with [MustDisposeResource] [NotDisposedResourceIsReturned] | https://www.jetbrains.com/help/resharper/NotDisposedResourceIsReturned.html
resharper_not_disposed_resource_is_returned_highlighting = error # +
# Safe cast expression always succeeds [TryCastAlwaysSucceeds] | https://www.jetbrains.com/help/resharper/TryCastAlwaysSucceeds.html
resharper_try_cast_always_succeeds_highlighting = error # +
# Shift expression with zero left operand equals zero [ShiftExpressionZeroLeftOperand] | https://www.jetbrains.com/help/resharper/ShiftExpressionZeroLeftOperand.html
resharper_shift_expression_zero_left_operand_highlighting = error # +
# Similar anonymous type detected nearby [SimilarAnonymousTypeNearby] | https://www.jetbrains.com/help/resharper/SimilarAnonymousTypeNearby.html
resharper_similar_anonymous_type_nearby_highlighting = none # rejected
# Similar expressions comparison [EqualExpressionComparison] | https://www.jetbrains.com/help/resharper/EqualExpressionComparison.html
resharper_equal_expression_comparison_highlighting = error # + d
# Some values of the enum are not processed inside 'switch' expression and are handled via exception in default arm [SwitchExpressionHandlesSomeKnownEnumValuesWithExceptionInDefault] | https://www.jetbrains.com/help/resharper/SwitchExpressionHandlesSomeKnownEnumValuesWithExceptionInDefault.html
resharper_switch_expression_handles_some_known_enum_values_with_exception_in_default_highlighting = error # + d
# Some values of the enum are not processed inside 'switch' statement [SwitchStatementMissingSomeEnumCasesNoDefault] | https://www.jetbrains.com/help/resharper/SwitchStatementMissingSomeEnumCasesNoDefault.html
resharper_switch_statement_missing_some_enum_cases_no_default_highlighting = error # + d
# Some values of the enum are not processed inside 'switch' statement and are handled via default section [SwitchStatementHandlesSomeKnownEnumValuesWithDefault] | https://www.jetbrains.com/help/resharper/SwitchStatementHandlesSomeKnownEnumValuesWithDefault.html
resharper_switch_statement_handles_some_known_enum_values_with_default_highlighting = error # + d
# Static field or auto-property in generic type [StaticMemberInGenericType] | https://www.jetbrains.com/help/resharper/StaticMemberInGenericType.html
resharper_static_member_in_generic_type_highlighting = error # + d
# Static member initializer refers to static member below or in other part [StaticMemberInitializerReferesToMemberBelow] | https://www.jetbrains.com/help/resharper/StaticMemberInitializerReferesToMemberBelow.html
resharper_static_member_initializer_referes_to_member_below_highlighting = error # +
# String formatting method problems [FormatStringProblem] | https://www.jetbrains.com/help/resharper/FormatStringProblem.html
resharper_format_string_problem_highlighting = error # +
# Structured message template problems [StructuredMessageTemplateProblem] | https://www.jetbrains.com/help/resharper/StructuredMessageTemplateProblem.html
resharper_structured_message_template_problem_highlighting = error # +
# Suspicious locking over synchronization primitive [SuspiciousLockOverSynchronizationPrimitive] | https://www.jetbrains.com/help/resharper/SuspiciousLockOverSynchronizationPrimitive.html
resharper_suspicious_lock_over_synchronization_primitive_highlighting = error # +
# Suspicious parameter name in ArgumentNullException [SuspiciousParameterNameInArgumentNullException] | https://www.jetbrains.com/help/resharper/SuspiciousParameterNameInArgumentNullException.html
resharper_suspicious_parameter_name_in_argument_null_exception_highlighting = error # +
# Suspicious shift count for this type of left operand [ShiftExpressionRightOperandNotEqualRealCount] | https://www.jetbrains.com/help/resharper/ShiftExpressionRightOperandNotEqualRealCount.html
resharper_shift_expression_right_operand_not_equal_real_count_highlighting = error # +
# Suspicious type conversion or check [SuspiciousTypeConversion.Global] | https://www.jetbrains.com/help/resharper/SuspiciousTypeConversion.Global.html
resharper_suspicious_type_conversion_global_highlighting = error # +
# Suspicious use of variable with discard-like name [AssignmentInsteadOfDiscard] | https://www.jetbrains.com/help/resharper/AssignmentInsteadOfDiscard.html
resharper_assignment_instead_of_discard_highlighting = error # +
# Suspicious 'volatile' field usage: compound operation is not atomic. 'Interlocked' class can be used instead. [NonAtomicCompoundOperator] | https://www.jetbrains.com/help/resharper/NonAtomicCompoundOperator.html
resharper_non_atomic_compound_operator_highlighting = error # +
# Symbol from module that might be missing at runtime [SymbolFromNotCopiedLocallyReferenceUsedWarning] | https://www.jetbrains.com/help/resharper/SymbolFromNotCopiedLocallyReferenceUsedWarning.html
resharper_symbol_from_not_copied_locally_reference_used_warning_highlighting = error # +
# Tail recursive call can be replaced with loop [TailRecursiveCall] | https://www.jetbrains.com/help/resharper/TailRecursiveCall.html
resharper_tail_recursive_call_highlighting = error # +
# The expression of 'is' operator is never of the provided type [IsExpressionAlwaysFalse] | https://www.jetbrains.com/help/resharper/IsExpressionAlwaysFalse.html
resharper_is_expression_always_false_highlighting = error # +
# The given expression of 'is' operator is always of the provided type [IsExpressionAlwaysTrue] | https://www.jetbrains.com/help/resharper/IsExpressionAlwaysTrue.html
resharper_is_expression_always_true_highlighting = error # +
# The pattern is redundant, it does not produce any runtime checks [PatternIsRedundant] | https://www.jetbrains.com/help/resharper/PatternIsRedundant.html
resharper_pattern_is_redundant_highlighting = none # + rejected
# The source expression always matches the provided pattern [PatternAlwaysMatches] | https://www.jetbrains.com/help/resharper/PatternAlwaysMatches.html
resharper_pattern_always_matches_highlighting = none # --
# The source expression never matches the provided pattern [PatternNeverMatches] | https://www.jetbrains.com/help/resharper/PatternNeverMatches.html
resharper_pattern_never_matches_highlighting = error # +
# Thread static field has initializer [ThreadStaticFieldHasInitializer] | https://www.jetbrains.com/help/resharper/ThreadStaticFieldHasInitializer.html
resharper_thread_static_field_has_initializer_highlighting = error # +
# Try cast and check for null can be replaced with a type check [SafeCastIsUsedAsTypeCheck] | https://www.jetbrains.com/help/resharper/SafeCastIsUsedAsTypeCheck.html
resharper_safe_cast_is_used_as_type_check_highlighting = error # +
# Type check and casts can be merged [MergeCastWithTypeCheck] | https://www.jetbrains.com/help/resharper/MergeCastWithTypeCheck.html
resharper_merge_cast_with_type_check_highlighting = error # ++
# Type pattern and casts can be merged [UseSwitchCasePatternVariable] | https://www.jetbrains.com/help/resharper/UseSwitchCasePatternVariable.html
resharper_use_switch_case_pattern_variable_highlighting = error # +
# Unassigned field (non-private accessibility) [UnassignedField.Global] | https://www.jetbrains.com/help/resharper/UnassignedField.Global.html
resharper_unassigned_field_global_highlighting = error
# Unassigned field (private accessibility) [UnassignedField.Local] | https://www.jetbrains.com/help/resharper/UnassignedField.Local.html
resharper_unassigned_field_local_highlighting = error
# Unassigned readonly field [UnassignedReadonlyField] | https://www.jetbrains.com/help/resharper/UnassignedReadonlyField.html
resharper_unassigned_readonly_field_highlighting = error # + d
# Unknown Razor layout [Razor.LayoutNotResolved] | https://www.jetbrains.com/help/resharper/Razor.LayoutNotResolved.html
resharper_razor_layout_not_resolved_highlighting = error # +
# Unknown Razor section [Razor.SectionNotResolved] | https://www.jetbrains.com/help/resharper/Razor.SectionNotResolved.html
resharper_razor_section_not_resolved_highlighting = error # +
# Usage of <inheritdoc /> is invalid [InheritdocInvalidUsage] | https://www.jetbrains.com/help/resharper/InheritdocInvalidUsage.html
resharper_inheritdoc_invalid_usage_highlighting = error # +
# Use <inheritdoc /> on root level to inherit documentation from base candidate [InheritdocConsiderUsage] | https://www.jetbrains.com/help/resharper/InheritdocConsiderUsage.html
resharper_inheritdoc_consider_usage_highlighting = error # +
# Use collection's count property [UseCollectionCountProperty] | https://www.jetbrains.com/help/resharper/UseCollectionCountProperty.html
resharper_use_collection_count_property_highlighting = error # + d
# Use format specifier in format strings [UseFormatSpecifierInFormatString] | https://www.jetbrains.com/help/resharper/UseFormatSpecifierInFormatString.html
resharper_use_format_specifier_in_format_string_highlighting = error # +
# Use format specifier in interpolated strings [SimplifyStringInterpolation] | https://www.jetbrains.com/help/resharper/SimplifyStringInterpolation.html
resharper_simplify_string_interpolation_highlighting = none # --
# Use null check instead of a type check succeeding on any not-null value [ConvertTypeCheckToNullCheck] | https://www.jetbrains.com/help/resharper/ConvertTypeCheckToNullCheck.html
resharper_convert_type_check_to_null_check_highlighting = error # +
# Use null check pattern instead of a type check succeeding on any not-null value [ConvertTypeCheckPatternToNullCheck] | https://www.jetbrains.com/help/resharper/ConvertTypeCheckPatternToNullCheck.html
resharper_convert_type_check_pattern_to_null_check_highlighting = error # +
# Use nullable annotation instead of an attribute [UseNullableAnnotationInsteadOfAttribute] | https://www.jetbrains.com/help/resharper/UseNullableAnnotationInsteadOfAttribute.html
resharper_use_nullable_annotation_instead_of_attribute_highlighting = error # +
# Useless arithmetical operation [UselessBinaryOperation] | https://www.jetbrains.com/help/resharper/UselessBinaryOperation.html
resharper_useless_binary_operation_highlighting = error # +
# Using stackalloc inside loop [StackAllocInsideLoop] | https://www.jetbrains.com/help/resharper/StackAllocInsideLoop.html
resharper_stack_alloc_inside_loop_highlighting = error # + d
# Value assigned to a property of non-variable qualifier expression can be lost [PossibleStructMemberModificationOfNonVariableStruct] | https://www.jetbrains.com/help/resharper/PossibleStructMemberModificationOfNonVariableStruct.html
resharper_possible_struct_member_modification_of_non_variable_struct_highlighting = error # +
# 'value' parameter is not used [ValueParameterNotUsed] | https://www.jetbrains.com/help/resharper/ValueParameterNotUsed.html
resharper_value_parameter_not_used_highlighting = error # +
# Variable can be declared as non-nullable [VariableCanBeNotNullable] | https://www.jetbrains.com/help/resharper/VariableCanBeNotNullable.html
resharper_variable_can_be_not_nullable_highlighting = error # +
# Variable in local function hides variable from outer scope [VariableHidesOuterVariable] | https://www.jetbrains.com/help/resharper/VariableHidesOuterVariable.html
resharper_variable_hides_outer_variable_highlighting = error # +
# Virtual member call in constructor [VirtualMemberCallInConstructor] | https://www.jetbrains.com/help/resharper/VirtualMemberCallInConstructor.html
resharper_virtual_member_call_in_constructor_highlighting = none # + - d
# 'void' method is annotated with the [MustDisposeResource] attribute [VoidMethodWithMustDisposeResourceAttribute] | https://www.jetbrains.com/help/resharper/VoidMethodWithMustDisposeResourceAttribute.html
resharper_void_method_with_must_dispose_resource_attribute_highlighting = error # +
# 'void' method is annotated with the [MustUseReturnValue] attribute [VoidMethodWithMustUseReturnValueAttribute] | https://www.jetbrains.com/help/resharper/VoidMethodWithMustUseReturnValueAttribute.html
resharper_void_method_with_must_use_return_value_attribute_highlighting = error # +
# 'void' method is annotated with the [Pure] attribute [PureAttributeOnVoidMethod] | https://www.jetbrains.com/help/resharper/PureAttributeOnVoidMethod.html
resharper_pure_attribute_on_void_method_highlighting = error # +
# 'with' expression is used instead of object initializer [WithExpressionInsteadOfInitializer] | https://www.jetbrains.com/help/resharper/WithExpressionInsteadOfInitializer.html
resharper_with_expression_instead_of_initializer_highlighting = error # +
# 'with' expression modifies all accessible instance members [WithExpressionModifiesAllMembers] | https://www.jetbrains.com/help/resharper/WithExpressionModifiesAllMembers.html
resharper_with_expression_modifies_all_members_highlighting = error # +
# '??' condition is known to be null or not null [ConstantNullCoalescingCondition] | https://www.jetbrains.com/help/resharper/ConstantNullCoalescingCondition.html
resharper_constant_null_coalescing_condition_highlighting = error # +
# '??' condition is never null according to nullable reference types' annotations [NullCoalescingConditionIsAlwaysNotNullAccordingToAPIContract] | https://www.jetbrains.com/help/resharper/NullCoalescingConditionIsAlwaysNotNullAccordingToAPIContract.html
resharper_null_coalescing_condition_is_always_not_null_according_to_api_contract_highlighting = error # +
# [NotNull] or [CanBeNull] attribute is applied to a type that already has the same annotation from nullable reference types [RedundantNullnessAttributeWithNullableReferenceTypes] | https://www.jetbrains.com/help/resharper/RedundantNullnessAttributeWithNullableReferenceTypes.html
resharper_redundant_nullness_attribute_with_nullable_reference_types_highlighting = error # +
# Anonymous method signature is not necessary [UnusedAnonymousMethodSignature] | https://www.jetbrains.com/help/resharper/UnusedAnonymousMethodSignature.html
resharper_unused_anonymous_method_signature_highlighting = error # +
# Array creation can be replaced with array initializer [RedundantArrayCreationExpression] | https://www.jetbrains.com/help/resharper/RedundantArrayCreationExpression.html
resharper_redundant_array_creation_expression_highlighting = error # +
# Assignment is not used [RedundantAssignment] | https://www.jetbrains.com/help/resharper/RedundantAssignment.html
resharper_redundant_assignment_highlighting = none # + -
# Assignment results are fully discarded [AssignmentIsFullyDiscarded] | https://www.jetbrains.com/help/resharper/AssignmentIsFullyDiscarded.html
resharper_assignment_is_fully_discarded_highlighting = error # +
# Comparison to integral constant is useless [UselessComparisonToIntegralConstant] | https://www.jetbrains.com/help/resharper/UselessComparisonToIntegralConstant.html
resharper_useless_comparison_to_integral_constant_highlighting = error # +
# Conditional access qualifier expression is known to be null or not null [ConstantConditionalAccessQualifier] | https://www.jetbrains.com/help/resharper/ConstantConditionalAccessQualifier.html
resharper_constant_conditional_access_qualifier_highlighting = error # +
# Conditional access qualifier expression is not null according to nullable reference types' annotations [ConditionalAccessQualifierIsNonNullableAccordingToAPIContract] | https://www.jetbrains.com/help/resharper/ConditionalAccessQualifierIsNonNullableAccordingToAPIContract.html
resharper_conditional_access_qualifier_is_non_nullable_according_to_api_contract_highlighting = none # + rejected
# 'ContainsKey' call is redundant before adding the item to the dictionary [RedundantDictionaryContainsKeyBeforeAdding] | https://www.jetbrains.com/help/resharper/RedundantDictionaryContainsKeyBeforeAdding.html
resharper_redundant_dictionary_contains_key_before_adding_highlighting = error # +
# Double negation operator [DoubleNegationOperator] | https://www.jetbrains.com/help/resharper/DoubleNegationOperator.html
resharper_double_negation_operator_highlighting = error # +
# Duplicated statements [DuplicatedStatements] | https://www.jetbrains.com/help/resharper/DuplicatedStatements.html
resharper_duplicated_statements_highlighting = error # +
# Empty 'for' loop is redundant [EmptyForStatement] | https://www.jetbrains.com/help/resharper/EmptyForStatement.html
resharper_empty_for_statement_highlighting = error # +
# Empty region [EmptyRegion] | https://www.jetbrains.com/help/resharper/EmptyRegion.html
resharper_empty_region_highlighting = error # +
# Explicit delegate creation expression is redundant [RedundantDelegateCreation] | https://www.jetbrains.com/help/resharper/RedundantDelegateCreation.html
resharper_redundant_delegate_creation_highlighting = error # +
# Expression is always 'null' [ExpressionIsAlwaysNull] | https://www.jetbrains.com/help/resharper/ExpressionIsAlwaysNull.html
resharper_expression_is_always_null_highlighting = error # +
# Expression is always 'true' or always 'false' [ConditionIsAlwaysTrueOrFalse] | https://www.jetbrains.com/help/resharper/ConditionIsAlwaysTrueOrFalse.html
resharper_condition_is_always_true_or_false_highlighting = error
# Expression is always 'true' or 'false' according to nullable reference types' annotations [ConditionIsAlwaysTrueOrFalseAccordingToNullableAPIContract] | https://www.jetbrains.com/help/resharper/ConditionIsAlwaysTrueOrFalseAccordingToNullableAPIContract.html
resharper_condition_is_always_true_or_false_according_to_nullable_api_contract_highlighting = none # + d rejected
# Heuristically unreachable code [HeuristicUnreachableCode] | https://www.jetbrains.com/help/resharper/HeuristicUnreachableCode.html
resharper_heuristic_unreachable_code_highlighting = error # +
# Immediate delegate invocation [RedundantImmediateDelegateInvocation] | https://www.jetbrains.com/help/resharper/RedundantImmediateDelegateInvocation.html
resharper_redundant_immediate_delegate_invocation_highlighting = error
# Math.Abs() argument is always non-negative [MathAbsMethodIsRedundant] | https://www.jetbrains.com/help/resharper/MathAbsMethodIsRedundant.html
resharper_math_abs_method_is_redundant_highlighting = error # +
# Math.Sign() method always gives the same result [SuspiciousMathSignMethod] | https://www.jetbrains.com/help/resharper/SuspiciousMathSignMethod.html
resharper_suspicious_math_sign_method_highlighting = error # +
# Parentheses are redundant if attribute has no arguments [RedundantAttributeParentheses] | https://www.jetbrains.com/help/resharper/RedundantAttributeParentheses.html
resharper_redundant_attribute_parentheses_highlighting = error # +
# Pattern is always 'true' or always 'false' [PatternIsAlwaysTrueOrFalse] | https://www.jetbrains.com/help/resharper/PatternIsAlwaysTrueOrFalse.html
resharper_pattern_is_always_true_or_false_highlighting = error # + d
# Private field can be converted into local variable [PrivateFieldCanBeConvertedToLocalVariable] | https://www.jetbrains.com/help/resharper/PrivateFieldCanBeConvertedToLocalVariable.html
resharper_private_field_can_be_converted_to_local_variable_highlighting = error # +
# Raw string can be simplified [RawStringCanBeSimplified] | https://www.jetbrains.com/help/resharper/RawStringCanBeSimplified.html
resharper_raw_string_can_be_simplified_highlighting = error # +
# Redundant [AttributeUsage] attribute property assignment [RedundantAttributeUsageProperty] | https://www.jetbrains.com/help/resharper/RedundantAttributeUsageProperty.html
resharper_redundant_attribute_usage_property_highlighting = error # +
# Redundant 'abstract' modifier [RedundantAbstractModifier] | https://www.jetbrains.com/help/resharper/RedundantAbstractModifier.html
resharper_redundant_abstract_modifier_highlighting = error # +
# Redundant anonymous type property explicit name [RedundantAnonymousTypePropertyName] | https://www.jetbrains.com/help/resharper/RedundantAnonymousTypePropertyName.html
resharper_redundant_anonymous_type_property_name_highlighting = none # -
# Redundant argument passed to caller argument expression parameter [RedundantCallerArgumentExpressionDefaultValue] | https://www.jetbrains.com/help/resharper/RedundantCallerArgumentExpressionDefaultValue.html
resharper_redundant_caller_argument_expression_default_value_highlighting = error # +
# Redundant argument with default value [RedundantArgumentDefaultValue] | https://www.jetbrains.com/help/resharper/RedundantArgumentDefaultValue.html
resharper_redundant_argument_default_value_highlighting = error
# Redundant arithmetic overflow checking context [RedundantOverflowCheckingContext] | https://www.jetbrains.com/help/resharper/RedundantOverflowCheckingContext.html
resharper_redundant_overflow_checking_context_highlighting = error # +
# Redundant 'Attribute' suffix [RedundantAttributeSuffix] | https://www.jetbrains.com/help/resharper/RedundantAttributeSuffix.html
resharper_redundant_attribute_suffix_highlighting = error # +
# Redundant 'base.' qualifier [RedundantBaseQualifier] | https://www.jetbrains.com/help/resharper/RedundantBaseQualifier.html
resharper_redundant_base_qualifier_highlighting = error # +
# Redundant boolean comparison [RedundantBoolCompare] | https://www.jetbrains.com/help/resharper/RedundantBoolCompare.html
resharper_redundant_bool_compare_highlighting = error # + d
# Redundant braces in collection initializer [RedundantCollectionInitializerElementBraces] | https://www.jetbrains.com/help/resharper/RedundantCollectionInitializerElementBraces.html
resharper_redundant_collection_initializer_element_braces_highlighting = error # +
# Redundant 'case' label [RedundantCaseLabel] | https://www.jetbrains.com/help/resharper/RedundantCaseLabel.html
resharper_redundant_case_label_highlighting = error
# Redundant 'case' label before default section [RedundantEnumCaseLabelForDefaultSection] | https://www.jetbrains.com/help/resharper/RedundantEnumCaseLabelForDefaultSection.html
resharper_redundant_enum_case_label_for_default_section_highlighting = none # + rejected
# Redundant cast [RedundantCast] | https://www.jetbrains.com/help/resharper/RedundantCast.html
resharper_redundant_cast_highlighting = none # + rejected
# Redundant catch clause [RedundantCatchClause] | https://www.jetbrains.com/help/resharper/RedundantCatchClause.html
resharper_redundant_catch_clause_highlighting = error # +
# Redundant 'class' keyword in record declaration [RedundantRecordClassKeyword] | https://www.jetbrains.com/help/resharper/RedundantRecordClassKeyword.html
resharper_redundant_record_class_keyword_highlighting = error # +
# Redundant collection copy [RedundantCollectionCopyCall] | https://www.jetbrains.com/help/resharper/RedundantCollectionCopyCall.html
resharper_redundant_collection_copy_call_highlighting = error # +
# Redundant condition check before assignments [RedundantCheckBeforeAssignment] | https://www.jetbrains.com/help/resharper/RedundantCheckBeforeAssignment.html
resharper_redundant_check_before_assignment_highlighting = error # +
# Redundant conditional ternary expression usage [RedundantTernaryExpression] | https://www.jetbrains.com/help/resharper/RedundantTernaryExpression.html
resharper_redundant_ternary_expression_highlighting = error # +
# Redundant context capturing with 'ConfigureAwait' [RedundantConfigureAwait] | https://www.jetbrains.com/help/resharper/RedundantConfigureAwait.html
resharper_redundant_configure_await_highlighting = error # +
# Redundant control flow jump statement [RedundantJumpStatement] | https://www.jetbrains.com/help/resharper/RedundantJumpStatement.html
resharper_redundant_jump_statement_highlighting = error # +
# Redundant discard designation [RedundantDiscardDesignation] | https://www.jetbrains.com/help/resharper/RedundantDiscardDesignation.html
resharper_redundant_discard_designation_highlighting = error # +
# Redundant 'else' keyword [RedundantIfElseBlock] | https://www.jetbrains.com/help/resharper/RedundantIfElseBlock.html
resharper_redundant_if_else_block_highlighting = error
# Redundant empty argument list on object creation expression [RedundantEmptyObjectCreationArgumentList] | https://www.jetbrains.com/help/resharper/RedundantEmptyObjectCreationArgumentList.html
resharper_redundant_empty_object_creation_argument_list_highlighting = error
# Redundant empty finally block [RedundantEmptyFinallyBlock] | https://www.jetbrains.com/help/resharper/RedundantEmptyFinallyBlock.html
resharper_redundant_empty_finally_block_highlighting = error # +
# Redundant empty object or collection initializer [RedundantEmptyObjectOrCollectionInitializer] | https://www.jetbrains.com/help/resharper/RedundantEmptyObjectOrCollectionInitializer.html
resharper_redundant_empty_object_or_collection_initializer_highlighting = error # +
# Redundant empty switch section [RedundantEmptySwitchSection] | https://www.jetbrains.com/help/resharper/RedundantEmptySwitchSection.html
resharper_redundant_empty_switch_section_highlighting = error # +
# Redundant explicit collection creation in argument of 'params' parameter [RedundantExplicitParamsArrayCreation] | https://www.jetbrains.com/help/resharper/RedundantExplicitParamsArrayCreation.html
resharper_redundant_explicit_params_array_creation_highlighting = error # +
# Redundant explicit nullable type creation [RedundantExplicitNullableCreation] | https://www.jetbrains.com/help/resharper/RedundantExplicitNullableCreation.html
resharper_redundant_explicit_nullable_creation_highlighting = error # +
# Redundant explicit positional property declaration [RedundantExplicitPositionalPropertyDeclaration] | https://www.jetbrains.com/help/resharper/RedundantExplicitPositionalPropertyDeclaration.html
resharper_redundant_explicit_positional_property_declaration_highlighting = error # +
# Redundant explicit size specification in array creation [RedundantExplicitArraySize] | https://www.jetbrains.com/help/resharper/RedundantExplicitArraySize.html
resharper_redundant_explicit_array_size_highlighting = error # +
# Redundant explicit tuple component name [RedundantExplicitTupleComponentName] | https://www.jetbrains.com/help/resharper/RedundantExplicitTupleComponentName.html
resharper_redundant_explicit_tuple_component_name_highlighting = none # --
# Redundant explicit type in array creation [RedundantExplicitArrayCreation] | https://www.jetbrains.com/help/resharper/RedundantExplicitArrayCreation.html
resharper_redundant_explicit_array_creation_highlighting = error # +
# Redundant fixed pointer declaration [RedundantFixedPointerDeclaration] | https://www.jetbrains.com/help/resharper/RedundantFixedPointerDeclaration.html
resharper_redundant_fixed_pointer_declaration_highlighting = error # +
# Redundant global using directive [RedundantUsingDirective.Global] | https://www.jetbrains.com/help/resharper/RedundantUsingDirective.Global.html
resharper_redundant_using_directive_global_highlighting = error # +
# Redundant 'IEnumerable.Cast<T>' or 'IEnumerable.OfType<T>' call [RedundantEnumerableCastCall] | https://www.jetbrains.com/help/resharper/RedundantEnumerableCastCall.html
resharper_redundant_enumerable_cast_call_highlighting = error # +
# Redundant lambda expression parameter type specification [RedundantLambdaParameterType] | https://www.jetbrains.com/help/resharper/RedundantLambdaParameterType.html
resharper_redundant_lambda_parameter_type_highlighting = error
# Redundant lambda signature parentheses [RedundantLambdaSignatureParentheses] | https://www.jetbrains.com/help/resharper/RedundantLambdaSignatureParentheses.html
resharper_redundant_lambda_signature_parentheses_highlighting = error # +
# Redundant name qualifier [RedundantNameQualifier] | https://www.jetbrains.com/help/resharper/RedundantNameQualifier.html
resharper_redundant_name_qualifier_highlighting = error
# Redundant 'notnull' constraint on type parameter constrained by non-nullable base type [RedundantNotNullConstraint] | https://www.jetbrains.com/help/resharper/RedundantNotNullConstraint.html
resharper_redundant_not_null_constraint_highlighting = error # +
# Redundant nullable annotation on base type constraint of type parameter constrained by another non-nullable base type [RedundantNullableAnnotationOnTypeConstraintHasNonNullableBaseType] | https://www.jetbrains.com/help/resharper/RedundantNullableAnnotationOnTypeConstraintHasNonNullableBaseType.html
resharper_redundant_nullable_annotation_on_type_constraint_has_non_nullable_base_type_highlighting = error # +
# Redundant nullable annotation on base type constraint of type parameter having non-nullable type kind [RedundantNullableAnnotationOnTypeConstraintHasNonNullableTypeKind] | https://www.jetbrains.com/help/resharper/RedundantNullableAnnotationOnTypeConstraintHasNonNullableTypeKind.html
resharper_redundant_nullable_annotation_on_type_constraint_has_non_nullable_type_kind_highlighting = error # +
# Redundant nullable annotation on 'class?' constraint of type parameter constrained by non-nullable base type [RedundantNullableAnnotationOnReferenceTypeConstraint] | https://www.jetbrains.com/help/resharper/RedundantNullableAnnotationOnReferenceTypeConstraint.html
resharper_redundant_nullable_annotation_on_reference_type_constraint_highlighting = error # +
# Redundant nullable attribute [RedundantNullableFlowAttribute] | https://www.jetbrains.com/help/resharper/RedundantNullableFlowAttribute.html
resharper_redundant_nullable_flow_attribute_highlighting = error # +
# Redundant nullable directive [RedundantNullableDirective] | https://www.jetbrains.com/help/resharper/RedundantNullableDirective.html
resharper_redundant_nullable_directive_highlighting = error # +
# Redundant nullable warning suppression expression [RedundantSuppressNullableWarningExpression] | https://www.jetbrains.com/help/resharper/RedundantSuppressNullableWarningExpression.html
resharper_redundant_suppress_nullable_warning_expression_highlighting = error # +
# Redundant 'object.ToString()' call [RedundantToStringCall] | https://www.jetbrains.com/help/resharper/RedundantToStringCall.html
resharper_redundant_to_string_call_highlighting = error # +
# Redundant 'object.ToString()' call for value types [RedundantToStringCallForValueType] | https://www.jetbrains.com/help/resharper/RedundantToStringCallForValueType.html
resharper_redundant_to_string_call_for_value_type_highlighting = error # +
# Redundant operand in logical conditional expression [RedundantLogicalConditionalExpressionOperand] | https://www.jetbrains.com/help/resharper/RedundantLogicalConditionalExpressionOperand.html
resharper_redundant_logical_conditional_expression_operand_highlighting = error # +
# Redundant 'orderby' clause 'ascending' keyword [RedundantQueryOrderByAscendingKeyword] | https://www.jetbrains.com/help/resharper/RedundantQueryOrderByAscendingKeyword.html
resharper_redundant_query_order_by_ascending_keyword_highlighting = error # +
# Redundant property pattern clause [RedundantPropertyPatternClause] | https://www.jetbrains.com/help/resharper/RedundantPropertyPatternClause.html
resharper_redundant_property_pattern_clause_highlighting = error # +
# Redundant range bound [RedundantRangeBound] | https://www.jetbrains.com/help/resharper/RedundantRangeBound.html
resharper_redundant_range_bound_highlighting = none # -
# Redundant 'readonly' modifier [RedundantReadonlyModifier] | https://www.jetbrains.com/help/resharper/RedundantReadonlyModifier.html
resharper_redundant_readonly_modifier_highlighting = error # +
# Redundant 'scoped' parameter modifier [RedundantScopedParameterModifier] | https://www.jetbrains.com/help/resharper/RedundantScopedParameterModifier.html
resharper_redundant_scoped_parameter_modifier_highlighting = error # +
# Redundant semicolon after type or namespace declaration [RedundantDeclarationSemicolon] | https://www.jetbrains.com/help/resharper/RedundantDeclarationSemicolon.html
resharper_redundant_declaration_semicolon_highlighting = error # +
# Redundant string interpolation [RedundantStringInterpolation] | https://www.jetbrains.com/help/resharper/RedundantStringInterpolation.html
resharper_redundant_string_interpolation_highlighting = error # ++
# Redundant 'string.Format()' call [RedundantStringFormatCall] | https://www.jetbrains.com/help/resharper/RedundantStringFormatCall.html
resharper_redundant_string_format_call_highlighting = error # +
# Redundant 'string.ToCharArray()' call [RedundantStringToCharArrayCall] | https://www.jetbrains.com/help/resharper/RedundantStringToCharArrayCall.html
resharper_redundant_string_to_char_array_call_highlighting = error # +
# Redundant switch expression arms [RedundantSwitchExpressionArms] | https://www.jetbrains.com/help/resharper/RedundantSwitchExpressionArms.html
resharper_redundant_switch_expression_arms_highlighting = none # + rejected
# Redundant type arguments inside 'nameof' [RedundantTypeArgumentsInsideNameof] | https://www.jetbrains.com/help/resharper/RedundantTypeArgumentsInsideNameof.html
resharper_redundant_type_arguments_inside_nameof_highlighting = error # +
# Redundant type arguments of method [RedundantTypeArgumentsOfMethod] | https://www.jetbrains.com/help/resharper/RedundantTypeArgumentsOfMethod.html
resharper_redundant_type_arguments_of_method_highlighting = error # +
# Redundant type check in a pattern [RedundantTypeCheckInPattern] | https://www.jetbrains.com/help/resharper/RedundantTypeCheckInPattern.html
resharper_redundant_type_check_in_pattern_highlighting = error # +
# Redundant type declaration body [RedundantTypeDeclarationBody] | https://www.jetbrains.com/help/resharper/RedundantTypeDeclarationBody.html
resharper_redundant_type_declaration_body_highlighting = error # + d
# Redundant using directive [RedundantUsingDirective] | https://www.jetbrains.com/help/resharper/RedundantUsingDirective.html
resharper_redundant_using_directive_highlighting = error
# Redundant verbatim prefix [RedundantVerbatimPrefix] | https://www.jetbrains.com/help/resharper/RedundantVerbatimPrefix.html
resharper_redundant_verbatim_prefix_highlighting = error # +
# Redundant verbatim string prefix [RedundantVerbatimStringPrefix] | https://www.jetbrains.com/help/resharper/RedundantVerbatimStringPrefix.html
resharper_redundant_verbatim_string_prefix_highlighting = error # +
# Redundant 'virtual' modifier [RedundantVirtualModifier] | https://www.jetbrains.com/help/resharper/RedundantVirtualModifier.html
resharper_redundant_virtual_modifier_highlighting = error # +
# Redundant 'WithCancellation()' invocation [RedundantWithCancellation] | https://www.jetbrains.com/help/resharper/RedundantWithCancellation.html
resharper_redundant_with_cancellation_highlighting = error # +
# Remove redundant pattern-matching parentheses [RedundantPatternParentheses] | https://www.jetbrains.com/help/resharper/RedundantPatternParentheses.html
resharper_redundant_pattern_parentheses_highlighting = error # +
# Subpattern that always matches is redundant [RedundantAlwaysMatchSubpattern] | https://www.jetbrains.com/help/resharper/RedundantAlwaysMatchSubpattern.html
resharper_redundant_always_match_subpattern_highlighting = error # +
# 'true' is redundant as 'for'-statement condition [ForStatementConditionIsTrue] | https://www.jetbrains.com/help/resharper/ForStatementConditionIsTrue.html
resharper_for_statement_condition_is_true_highlighting = error # +
# Type check for nullable type is equal to underlying type check [RedundantNullableTypeMark] | https://www.jetbrains.com/help/resharper/RedundantNullableTypeMark.html
resharper_redundant_nullable_type_mark_highlighting = error # +
# Unsafe context declaration is redundant [RedundantUnsafeContext] | https://www.jetbrains.com/help/resharper/RedundantUnsafeContext.html
resharper_redundant_unsafe_context_highlighting = error # +
# Unused nullable directive [UnusedNullableDirective] | https://www.jetbrains.com/help/resharper/UnusedNullableDirective.html
resharper_unused_nullable_directive_highlighting = error # +
# Class with virtual (overridable) members never inherited (non-private accessibility) [ClassWithVirtualMembersNeverInherited.Global] | https://www.jetbrains.com/help/resharper/ClassWithVirtualMembersNeverInherited.Global.html
resharper_class_with_virtual_members_never_inherited_global_highlighting = error # +
# Class with virtual (overridable) members never inherited (private accessibility) [ClassWithVirtualMembersNeverInherited.Local] | https://www.jetbrains.com/help/resharper/ClassWithVirtualMembersNeverInherited.Local.html
resharper_class_with_virtual_members_never_inherited_local_highlighting = error # +
# Component of the tuple is never used [UnusedTupleComponentInReturnValue] | https://www.jetbrains.com/help/resharper/UnusedTupleComponentInReturnValue.html
resharper_unused_tuple_component_in_return_value_highlighting = error
# 'DefaultParameterValueAttribute' must be used in conjunction with 'OptionalAttribute' [MeaninglessDefaultParameterValue] | https://www.jetbrains.com/help/resharper/MeaninglessDefaultParameterValue.html
resharper_meaningless_default_parameter_value_highlighting = error # +
# Empty constructor [EmptyConstructor] | https://www.jetbrains.com/help/resharper/EmptyConstructor.html
resharper_empty_constructor_highlighting = error # +
# Empty destructor [EmptyDestructor] | https://www.jetbrains.com/help/resharper/EmptyDestructor.html
resharper_empty_destructor_highlighting = error # +
# Empty implementation of 'partial void' method is redundant [RedundantPartialMethodEmptyImplementation] | https://www.jetbrains.com/help/resharper/RedundantPartialMethodEmptyImplementation.html
resharper_redundant_partial_method_empty_implementation_highlighting = error # +
# Empty namespace declaration [EmptyNamespace] | https://www.jetbrains.com/help/resharper/EmptyNamespace.html
resharper_empty_namespace_highlighting = error # + d
# Entity is only used to capture its name (non-private accessibility) [EntityNameCapturedOnly.Global] | https://www.jetbrains.com/help/resharper/EntityNameCapturedOnly.Global.html
resharper_entity_name_captured_only_global_highlighting = error # +
# Entity is only used to capture its name (private accessibility) [EntityNameCapturedOnly.Local] | https://www.jetbrains.com/help/resharper/EntityNameCapturedOnly.Local.html
resharper_entity_name_captured_only_local_highlighting = error # +
# Local function is never used [UnusedLocalFunction] | https://www.jetbrains.com/help/resharper/UnusedLocalFunction.html
resharper_unused_local_function_highlighting = error # +
# Local function is never used [UnusedLocalFunction.Compiler] | https://www.jetbrains.com/help/resharper/UnusedLocalFunction.Compiler.html
resharper_unused_local_function_compiler_highlighting = error # +
# Local function return value is never used [UnusedLocalFunctionReturnValue] | https://www.jetbrains.com/help/resharper/UnusedLocalFunctionReturnValue.html
resharper_unused_local_function_return_value_highlighting = error # +
# Method return value is never used (non-private accessibility) [UnusedMethodReturnValue.Global] | https://www.jetbrains.com/help/resharper/UnusedMethodReturnValue.Global.html
resharper_unused_method_return_value_global_highlighting = none # ++ rejected
# Method return value is never used (private accessibility) [UnusedMethodReturnValue.Local] | https://www.jetbrains.com/help/resharper/UnusedMethodReturnValue.Local.html
resharper_unused_method_return_value_local_highlighting = error # +
# Non-accessed local variable [NotAccessedVariable] | https://www.jetbrains.com/help/resharper/NotAccessedVariable.html
resharper_not_accessed_variable_highlighting = error
# Non-accessed local variable is only used to discard the 'out' parameter value [NotAccessedOutParameterVariable] | https://www.jetbrains.com/help/resharper/NotAccessedOutParameterVariable.html
resharper_not_accessed_out_parameter_variable_highlighting = error # +
# Not accessed primary constructor parameter [NotAccessedPrimaryConstructorParameterCompiler] | https://www.jetbrains.com/help/resharper/NotAccessedPrimaryConstructorParameterCompiler.html
resharper_not_accessed_primary_constructor_parameter_compiler_highlighting = error # +
# Parameter is only used for precondition check (non-private accessibility) [ParameterOnlyUsedForPreconditionCheck.Global] | https://www.jetbrains.com/help/resharper/ParameterOnlyUsedForPreconditionCheck.Global.html
resharper_parameter_only_used_for_precondition_check_global_highlighting = error # +
# Parameter is only used for precondition check (private accessibility) [ParameterOnlyUsedForPreconditionCheck.Local] | https://www.jetbrains.com/help/resharper/ParameterOnlyUsedForPreconditionCheck.Local.html
resharper_parameter_only_used_for_precondition_check_local_highlighting = error # +
# Parameter output value is always discarded (non-private accessibility) [OutParameterValueIsAlwaysDiscarded.Global] | https://www.jetbrains.com/help/resharper/OutParameterValueIsAlwaysDiscarded.Global.html
resharper_out_parameter_value_is_always_discarded_global_highlighting = error # +
# Parameter output value is always discarded (private accessibility) [OutParameterValueIsAlwaysDiscarded.Local] | https://www.jetbrains.com/help/resharper/OutParameterValueIsAlwaysDiscarded.Local.html
resharper_out_parameter_value_is_always_discarded_local_highlighting = error # +
# 'params' modifier is always ignored on overrides [RedundantParams] | https://www.jetbrains.com/help/resharper/RedundantParams.html
resharper_redundant_params_highlighting = error # +
# Redundant base constructor call [RedundantBaseConstructorCall] | https://www.jetbrains.com/help/resharper/RedundantBaseConstructorCall.html
resharper_redundant_base_constructor_call_highlighting = error # +
# Redundant class or interface specification in base types list [RedundantExtendsListEntry] | https://www.jetbrains.com/help/resharper/RedundantExtendsListEntry.html
resharper_redundant_extends_list_entry_highlighting = none # + rejected
# Redundant member initializer [RedundantDefaultMemberInitializer] | https://www.jetbrains.com/help/resharper/RedundantDefaultMemberInitializer.html
resharper_redundant_default_member_initializer_highlighting = error # + d
# Redundant member override [RedundantOverriddenMember] | https://www.jetbrains.com/help/resharper/RedundantOverriddenMember.html
resharper_redundant_overridden_member_highlighting = error # +
# Redundant method overload (non-private accessibility) [RedundantOverload.Global] | https://www.jetbrains.com/help/resharper/RedundantOverload.Global.html
resharper_redundant_overload_global_highlighting = error # +
# Redundant method overload (private accessibility) [RedundantOverload.Local] | https://www.jetbrains.com/help/resharper/RedundantOverload.Local.html
resharper_redundant_overload_local_highlighting = error # +
# Redundant 'partial' modifier on method declaration [PartialMethodWithSinglePart] | https://www.jetbrains.com/help/resharper/PartialMethodWithSinglePart.html
resharper_partial_method_with_single_part_highlighting = error # +
# Redundant 'partial' modifier on type declaration [PartialTypeWithSinglePart] | https://www.jetbrains.com/help/resharper/PartialTypeWithSinglePart.html
resharper_partial_type_with_single_part_highlighting = error # +
# Sealed member in sealed class [SealedMemberInSealedClass] | https://www.jetbrains.com/help/resharper/SealedMemberInSealedClass.html
resharper_sealed_member_in_sealed_class_highlighting = error # +
# Type is never used (non-private accessibility) [UnusedType.Global] | https://www.jetbrains.com/help/resharper/UnusedType.Global.html
resharper_unused_type_global_highlighting = error # ++
# Type is never used (private accessibility) [UnusedType.Local] | https://www.jetbrains.com/help/resharper/UnusedType.Local.html
resharper_unused_type_local_highlighting = error # ++
# Type member is never accessed via base type (non-private accessibility) [UnusedMemberInSuper.Global] | https://www.jetbrains.com/help/resharper/UnusedMemberInSuper.Global.html
resharper_unused_member_in_super_global_highlighting = none # rejected
# Type member is never accessed via base type (private accessibility) [UnusedMemberInSuper.Local] | https://www.jetbrains.com/help/resharper/UnusedMemberInSuper.Local.html
resharper_unused_member_in_super_local_highlighting = error # +
# Type member is never used (non-private accessibility) [UnusedMember.Global] | https://www.jetbrains.com/help/resharper/UnusedMember.Global.html
resharper_unused_member_global_highlighting = error # +
# Type member is never used (private accessibility) [UnusedMember.Local] | https://www.jetbrains.com/help/resharper/UnusedMember.Local.html
resharper_unused_member_local_highlighting = error # +
# Type member is only used in overrides (non-private accessibility) [UnusedMemberHierarchy.Global] | https://www.jetbrains.com/help/resharper/UnusedMemberHierarchy.Global.html
resharper_unused_member_hierarchy_global_highlighting = none # rejected
# Type member is only used in overrides (private accessibility) [UnusedMemberHierarchy.Local] | https://www.jetbrains.com/help/resharper/UnusedMemberHierarchy.Local.html
resharper_unused_member_hierarchy_local_highlighting = none # rejected
# Underlying type of enum is 'int' [EnumUnderlyingTypeIsInt] | https://www.jetbrains.com/help/resharper/EnumUnderlyingTypeIsInt.html
resharper_enum_underlying_type_is_int_highlighting = error
# Unused label [UnusedLabel] | https://www.jetbrains.com/help/resharper/UnusedLabel.html
resharper_unused_label_highlighting = error # +
# Unused local variable [UnusedVariable] | https://www.jetbrains.com/help/resharper/UnusedVariable.html
resharper_unused_variable_highlighting = error
# Unused parameter (non-private accessibility) [UnusedParameter.Global] | https://www.jetbrains.com/help/resharper/UnusedParameter.Global.html
resharper_unused_parameter_global_highlighting = error
# Unused parameter (private accessibility) [UnusedParameter.Local] | https://www.jetbrains.com/help/resharper/UnusedParameter.Local.html
resharper_unused_parameter_local_highlighting = error
# Unused parameter in partial method [UnusedParameterInPartialMethod] | https://www.jetbrains.com/help/resharper/UnusedParameterInPartialMethod.html
resharper_unused_parameter_in_partial_method_highlighting = error # +
# Unused positional parameter [UnusedPositionalParameterCompiler] | https://www.jetbrains.com/help/resharper/UnusedPositionalParameterCompiler.html
resharper_unused_positional_parameter_compiler_highlighting = error # +
# Unused type parameter [UnusedTypeParameter] | https://www.jetbrains.com/help/resharper/UnusedTypeParameter.html
resharper_unused_type_parameter_highlighting = none # + rejected
# Virtual (overridable) member is never overridden (non-private accessibility) [VirtualMemberNeverOverridden.Global] | https://www.jetbrains.com/help/resharper/VirtualMemberNeverOverridden.Global.html
resharper_virtual_member_never_overridden_global_highlighting = error # +
# Virtual (overridable) member is never overridden (private accessibility) [VirtualMemberNeverOverridden.Local] | https://www.jetbrains.com/help/resharper/VirtualMemberNeverOverridden.Local.html
resharper_virtual_member_never_overridden_local_highlighting = error # +
# Vulnerable API usage [VulnerableApi] | https://www.jetbrains.com/help/resharper/VulnerableApi.html
resharper_vulnerable_api_highlighting = error # +
# Typo in comment [CommentTypo] | https://www.jetbrains.com/help/resharper/CommentTypo.html
resharper_comment_typo_highlighting = none # not work
# Typo in identifier [IdentifierTypo] | https://www.jetbrains.com/help/resharper/IdentifierTypo.html
resharper_identifier_typo_highlighting = none # not work
# Typo in string literal [StringLiteralTypo] | https://www.jetbrains.com/help/resharper/StringLiteralTypo.html
resharper_string_literal_typo_highlighting = none # not work
# Add parentheses to avoid non-obvious precedence [ArrangeMissingParentheses] | https://www.jetbrains.com/help/resharper/ArrangeMissingParentheses.html
resharper_arrange_missing_parentheses_highlighting = none # - d
# Add/remove qualifier for static members [ArrangeStaticMemberQualifier] | https://www.jetbrains.com/help/resharper/ArrangeStaticMemberQualifier.html
resharper_arrange_static_member_qualifier_highlighting = error # + d
# Add/remove 'this.' qualifier [ArrangeThisQualifier] | https://www.jetbrains.com/help/resharper/ArrangeThisQualifier.html
resharper_arrange_this_qualifier_highlighting = error # + d
# Adjust modifiers declaration order [ArrangeModifiersOrder] | https://www.jetbrains.com/help/resharper/ArrangeModifiersOrder.html
resharper_arrange_modifiers_order_highlighting = error
# Arrange null checking pattern https://www.jetbrains.com/help/resharper/Null_Checking_Pattern_Style.html
resharper_arrange_null_checking_pattern_highlighting = none
null_checking_pattern_style = empty_recursive_pattern # ToDo: change
# Join or separate attributes in section [ArrangeAttributes] | https://www.jetbrains.com/help/resharper/ArrangeAttributes.html
resharper_arrange_attributes_highlighting = none # rejected
# Join or separate 'var' in deconstruction declarations [ArrangeVarKeywordsInDeconstructingDeclaration] | https://www.jetbrains.com/help/resharper/ArrangeVarKeywordsInDeconstructingDeclaration.html
resharper_arrange_var_keywords_in_deconstructing_declaration_highlighting = none # -
# Place assignment expression into block [PlaceAssignmentExpressionIntoBlock] | https://www.jetbrains.com/help/resharper/PlaceAssignmentExpressionIntoBlock.html
resharper_place_assignment_expression_into_block_highlighting = error # + d
# Remove redundant parentheses [ArrangeRedundantParentheses] | https://www.jetbrains.com/help/resharper/ArrangeRedundantParentheses.html
resharper_arrange_redundant_parentheses_highlighting = none # + d rejected
# Replace built-in type reference with a CLR type name or a keyword [BuiltInTypeReferenceStyle] | https://www.jetbrains.com/help/resharper/BuiltInTypeReferenceStyle.html
resharper_built_in_type_reference_style_highlighting = error # + d
# Replace built-in type reference with a CLR type name or a keyword in static member access expressions [BuiltInTypeReferenceStyleForMemberAccess] | https://www.jetbrains.com/help/resharper/BuiltInTypeReferenceStyleForMemberAccess.html
resharper_built_in_type_reference_style_for_member_access_highlighting = error # + d
# Separate control transfer statement with blank line [SeparateControlTransferStatement] | https://www.jetbrains.com/help/resharper/SeparateControlTransferStatement.html
resharper_separate_control_transfer_statement_highlighting = none # -
# Unnecessary whitespace at the end of line [UnnecessaryWhitespace] | https://www.jetbrains.com/help/resharper/UnnecessaryWhitespace.html
resharper_unnecessary_whitespace_highlighting = none # - d
# Usage of tabulation character for indentation is prohibited [TabsAreDisallowed] | https://www.jetbrains.com/help/resharper/TabsAreDisallowed.html
resharper_tabs_are_disallowed_highlighting = none # - d
# Use explicit or implicit modifier definition for type members [ArrangeTypeMemberModifiers] | https://www.jetbrains.com/help/resharper/ArrangeTypeMemberModifiers.html
resharper_arrange_type_member_modifiers_highlighting = error # + d
# Use explicit or implicit modifier definition for types [ArrangeTypeModifiers] | https://www.jetbrains.com/help/resharper/ArrangeTypeModifiers.html
resharper_arrange_type_modifiers_highlighting = error # + d
# Use preferred argument style [ArgumentsStyleOther] | https://www.jetbrains.com/help/resharper/ArgumentsStyleOther.html
resharper_arguments_style_other_highlighting = none # rejected
# Use preferred argument style for anonymous functions [ArgumentsStyleAnonymousFunction] | https://www.jetbrains.com/help/resharper/ArgumentsStyleAnonymousFunction.html
resharper_arguments_style_anonymous_function_highlighting = none # rejected
# Use preferred argument style for literal values [ArgumentsStyleLiteral] | https://www.jetbrains.com/help/resharper/ArgumentsStyleLiteral.html
resharper_arguments_style_literal_highlighting = none # rejected
# Use preferred argument style for named expressions [ArgumentsStyleNamedExpression] | https://www.jetbrains.com/help/resharper/ArgumentsStyleNamedExpression.html
resharper_arguments_style_named_expression_highlighting = none # rejected
# Use preferred argument style for string literal values [ArgumentsStyleStringLiteral] | https://www.jetbrains.com/help/resharper/ArgumentsStyleStringLiteral.html
resharper_arguments_style_string_literal_highlighting = none # rejected
# Use preferred body style (convert into constructor or destructor with preferred body style) [ArrangeConstructorOrDestructorBody] | https://www.jetbrains.com/help/resharper/ArrangeConstructorOrDestructorBody.html
resharper_arrange_constructor_or_destructor_body_highlighting = none # - d
# Use preferred body style (convert into local function with preferred body style) [ArrangeLocalFunctionBody] | https://www.jetbrains.com/help/resharper/ArrangeLocalFunctionBody.html
resharper_arrange_local_function_body_highlighting = none # - d
# Use preferred body style (convert into method or operator with preferred body style) [ArrangeMethodOrOperatorBody] | https://www.jetbrains.com/help/resharper/ArrangeMethodOrOperatorBody.html
resharper_arrange_method_or_operator_body_highlighting = none # - d
# Use preferred body style (convert into property, indexer, or event with preferred body style) [ArrangeAccessorOwnerBody] | https://www.jetbrains.com/help/resharper/ArrangeAccessorOwnerBody.html
resharper_arrange_accessor_owner_body_highlighting = none # - d
# Use preferred braces style (enforce braces in 'do-while' statement) [EnforceDoWhileStatementBraces] | https://www.jetbrains.com/help/resharper/EnforceDoWhileStatementBraces.html
resharper_enforce_do_while_statement_braces_highlighting = none # - d
# Use preferred braces style (enforce braces in 'fixed' statement) [EnforceFixedStatementBraces] | https://www.jetbrains.com/help/resharper/EnforceFixedStatementBraces.html
resharper_enforce_fixed_statement_braces_highlighting = none # - d
# Use preferred braces style (enforce braces in 'for' statement) [EnforceForeachStatementBraces] | https://www.jetbrains.com/help/resharper/EnforceForStatementBraces.html
resharper_enforce_for_statement_braces_highlighting = none # - d
# Use preferred braces style (enforce braces in 'foreach' statement) [EnforceForeachStatementBraces] | https://www.jetbrains.com/help/resharper/EnforceForeachStatementBraces.html
resharper_enforce_foreach_statement_braces_highlighting = none # - d
# Use preferred braces style (enforce braces in 'if' statement) [EnforceIfStatementBraces] | https://www.jetbrains.com/help/resharper/EnforceIfStatementBraces.html
resharper_enforce_if_statement_braces_highlighting = none # - d
# Use preferred braces style (enforce braces in 'lock' statement) [EnforceLockStatementBraces] | https://www.jetbrains.com/help/resharper/EnforceLockStatementBraces.html
resharper_enforce_lock_statement_braces_highlighting = none # - d
# Use preferred braces style (enforce braces in 'using' statement) [EnforceUsingStatementBraces] | https://www.jetbrains.com/help/resharper/EnforceUsingStatementBraces.html
resharper_enforce_using_statement_braces_highlighting = none # - d
# Use preferred braces style (enforce braces in 'while' statement) [EnforceWhileStatementBraces] | https://www.jetbrains.com/help/resharper/EnforceWhileStatementBraces.html
resharper_enforce_while_statement_braces_highlighting = none # - d
# Use preferred braces style (remove redundant braces) [RemoveRedundantBraces] | https://www.jetbrains.com/help/resharper/RemoveRedundantBraces.html
resharper_remove_redundant_braces_highlighting = none # - d
# Use preferred namespace body style [ArrangeNamespaceBody] | https://www.jetbrains.com/help/resharper/ArrangeNamespaceBody.html
resharper_arrange_namespace_body_highlighting = error # + d
# Use preferred style for discard declaration [SuggestDiscardDeclarationVarStyle] | https://www.jetbrains.com/help/resharper/SuggestDiscardDeclarationVarStyle.html
resharper_suggest_discard_declaration_var_style_highlighting = error # +
# Use preferred style for trailing comma before new line in multiline lists [ArrangeTrailingCommaInMultilineLists] | https://www.jetbrains.com/help/resharper/ArrangeTrailingCommaInMultilineLists.html
resharper_arrange_trailing_comma_in_multiline_lists_highlighting = none # + d rejected
# Use preferred style for trailing comma when the last element is not followed by a new line [ArrangeTrailingCommaInSinglelineLists] | https://www.jetbrains.com/help/resharper/ArrangeTrailingCommaInSinglelineLists.html
resharper_arrange_trailing_comma_in_singleline_lists_highlighting = error # +
# Use preferred style of default value expression when type is evident [ArrangeDefaultValueWhenTypeEvident] | https://www.jetbrains.com/help/resharper/ArrangeDefaultValueWhenTypeEvident.html
resharper_arrange_default_value_when_type_evident_highlighting = none # - d
# Use preferred style of default value expression when type is not evident [ArrangeDefaultValueWhenTypeNotEvident] | https://www.jetbrains.com/help/resharper/ArrangeDefaultValueWhenTypeNotEvident.html
resharper_arrange_default_value_when_type_not_evident_highlighting = none # rejected
# Use preferred style of 'new' expression when created type is evident [ArrangeObjectCreationWhenTypeEvident] | https://www.jetbrains.com/help/resharper/ArrangeObjectCreationWhenTypeEvident.html
resharper_arrange_object_creation_when_type_evident_highlighting = error
# Use preferred style of 'new' expression when created type is not evident [ArrangeObjectCreationWhenTypeNotEvident] | https://www.jetbrains.com/help/resharper/ArrangeObjectCreationWhenTypeNotEvident.html
resharper_arrange_object_creation_when_type_not_evident_highlighting = none # -
# Use preferred 'var' style (elsewhere) [SuggestVarOrType_Elsewhere] | https://www.jetbrains.com/help/resharper/SuggestVarOrType_Elsewhere.html
resharper_suggest_var_or_type_elsewhere_highlighting = none # - d
# Use preferred 'var' style (for built-in types) [SuggestVarOrType_BuiltInTypes] | https://www.jetbrains.com/help/resharper/SuggestVarOrType_BuiltInTypes.html
resharper_suggest_var_or_type_built_in_types_highlighting = none # - d
# Use preferred 'var' style (in deconstruction declarations) [SuggestVarOrType_DeconstructionDeclarations] | https://www.jetbrains.com/help/resharper/SuggestVarOrType_DeconstructionDeclarations.html
resharper_suggest_var_or_type_deconstruction_declarations_highlighting = none # - d
# Use preferred 'var' style (when type is simple) [SuggestVarOrType_SimpleTypes] | https://www.jetbrains.com/help/resharper/SuggestVarOrType_SimpleTypes.html
resharper_suggest_var_or_type_simple_types_highlighting = none # - d
# Alternative non-allocating method available [Unity.PreferNonAllocApi] | https://www.jetbrains.com/help/resharper/Unity.PreferNonAllocApi.html
resharper_unity_prefer_non_alloc_api_highlighting = error # +
# Avoid 'base.OnGUI()' in classes derived from 'PropertyDrawer' [Unity.PropertyDrawerOnGUIBase] | https://www.jetbrains.com/help/resharper/Unity.PropertyDrawerOnGUIBase.html
resharper_unity_property_drawer_on_gui_base_highlighting = error # +
# Cannot resolve component or scriptable object [Unity.UnresolvedComponentOrScriptableObject] | https://www.jetbrains.com/help/resharper/Unity.UnresolvedComponentOrScriptableObject.html
resharper_unity_unresolved_component_or_scriptable_object_highlighting = error # +
# DOTS: IAspect fields are required to be one of the following types: RefRW, RefRO, EnabledRefRW, EnabledRefRO, DynamicBuffer, or Entity [Unity.Entities.AspectWrongFieldsType] | https://www.jetbrains.com/help/resharper/Unity.Entities.AspectWrongFieldsType.html
resharper_unity_entities_aspect_wrong_fields_type_highlighting = error # +
# DOTS: Inconsistent type keywords [Unity.Entities.InconsistentModifiersForDotsInheritor] | https://www.jetbrains.com/help/resharper/Unity.Entities.InconsistentModifiersForDotsInheritor.html
resharper_unity_entities_inconsistent_modifiers_for_dots_inheritor_highlighting = error # +
# DOTS: The type specified must be a structure type [Unity.Entities.MustBeStructForDotsInheritor] | https://www.jetbrains.com/help/resharper/Unity.Entities.MustBeStructForDotsInheritor.html
resharper_unity_entities_must_be_struct_for_dots_inheritor_highlighting = error # +
# Event function with the same name is already declared [Unity.DuplicateEventFunction] | https://www.jetbrains.com/help/resharper/Unity.DuplicateEventFunction.html
resharper_unity_duplicate_event_function_highlighting = error # +
# Expected a type derived from 'Component' or 'MonoBehaviour' [Unity.ExpectedComponent] | https://www.jetbrains.com/help/resharper/Unity.ExpectedComponent.html
resharper_unity_expected_component_highlighting = error # +
# Expected a type derived from 'ScriptableObject' [Unity.ExpectedScriptableObject] | https://www.jetbrains.com/help/resharper/Unity.ExpectedScriptableObject.html
resharper_unity_expected_scriptable_object_highlighting = error # +
# Field of 'ComponentLookup' type must be updated before being used. [Unity.Entities.NotUpdatedComponentLookup] | https://www.jetbrains.com/help/resharper/Unity.Entities.NotUpdatedComponentLookup.html
resharper_unity_entities_not_updated_component_lookup_highlighting = error # +
# File name should match the name of the assembly [MISMATCHED_ASMDEF_FILENAME] | https://www.jetbrains.com/help/resharper/MISMATCHED_ASMDEF_FILENAME.html
resharper_mismatched_asmdef_filename_highlighting = error # +
# Group path is not defined [Odin.OdinUnknownGroupingPath] | https://www.jetbrains.com/help/resharper/Odin.OdinUnknownGroupingPath.html
resharper_odin_odin_unknown_grouping_path_highlighting = error # +
# Incorrect method signature [Unity.IncorrectMethodSignature] | https://www.jetbrains.com/help/resharper/Unity.IncorrectMethodSignature.html
resharper_unity_incorrect_method_signature_highlighting = error # +
# Incorrect Odin's group attribute type [Odin.OdinMemberWrongGroupingAttribute] | https://www.jetbrains.com/help/resharper/Odin.OdinMemberWrongGroupingAttribute.html
resharper_odin_odin_member_wrong_grouping_attribute_highlighting = error # +
# Member appears in multiple UI groups simultaneously [OdinMemberPresentInMultipleGroups] | https://www.jetbrains.com/help/resharper/Odin.OdinMemberPresentInMultipleGroups.html
resharper_odin_odin_member_present_in_multiple_groups_highlighting = error # +
# Method referenced in string literal does not have the expected signature [Unity.IncorrectMethodSignatureInStringLiteral] | https://www.jetbrains.com/help/resharper/Unity.IncorrectMethodSignatureInStringLiteral.html
resharper_unity_incorrect_method_signature_in_string_literal_highlighting = error # +
# 'MonoBehaviour' instances must be instantiated with 'GameObject.AddComponent<T>()' instead of 'new' [Unity.IncorrectMonoBehaviourInstantiation] | https://www.jetbrains.com/help/resharper/Unity.IncorrectMonoBehaviourInstantiation.html
resharper_unity_incorrect_mono_behaviour_instantiation_highlighting = error # +
# Parameter should be derived from 'Component' [Unity.ParameterNotDerivedFromComponent] | https://www.jetbrains.com/help/resharper/Unity.ParameterNotDerivedFromComponent.html
resharper_unity_parameter_not_derived_from_component_highlighting = error # +
# Possible incorrect application of attribute to multiple fields [Unity.PossibleMisapplicationOfAttributeToMultipleFields] | https://www.jetbrains.com/help/resharper/Unity.PossibleMisapplicationOfAttributeToMultipleFields.html
resharper_unity_possible_misapplication_of_attribute_to_multiple_fields_highlighting = error # +
# Possible unintended bypass of lifetime check of underlying Unity engine object (null coalescing on a type deriving from 'UnityEngine.Object' bypasses the lifetime check on the underlying Unity engine object) [Unity.NoNullCoalescing] | https://www.jetbrains.com/help/resharper/Unity.NoNullCoalescing.html#null_coalescing
resharper_unity_no_null_coalescing_highlighting = none # -
# Possible unintended bypass of lifetime check of underlying Unity engine object (null propagating on a type deriving from 'UnityEngine.Object' bypasses the lifetime check on the underlying Unity engine object) [Unity.NoNullPropagation] | https://www.jetbrains.com/help/resharper/Unity.NoNullPropagation.html
resharper_unity_no_null_propagation_highlighting = none # -
# Possible unintended bypass of lifetime check of underlying Unity engine object (pattern matching null checks on a type deriving from 'UnityEngine.Object' bypasses the lifetime check on the underlying Unity engine object) [Unity.NoNullPatternMatching] | https://www.jetbrains.com/help/resharper/Unity.NoNullPatternMatching.html
resharper_unity_no_null_pattern_matching_highlighting = none # -
# Prefer GUID-based assembly references [Unity.PreferGuidReference] | https://www.jetbrains.com/help/resharper/Unity.PreferGuidReference.html
resharper_unity_prefer_guid_reference_highlighting = error # +
# Redundant attribute usage (attribute is redundant when applied to this declaration type)
resharper_unity_redundant_attribute_on_target_highlighting = none
# Redundant attribute usage (redundant 'FormerlySerializedAs' attribute)
resharper_unity_redundant_formerly_serialized_as_attribute_highlighting = none
# Redundant attribute usage (redundant 'HideInInspector' attribute)
resharper_unity_redundant_hide_in_inspector_attribute_highlighting = none
# Redundant attribute usage (redundant 'InitializeOnLoad' attribute)
resharper_unity_redundant_initialize_on_load_attribute_highlighting = none
# Redundant attribute usage (redundant 'SerializeField' attribute)
resharper_unity_redundant_serialize_field_attribute_highlighting = none
# Redundant Unity event function
resharper_unity_redundant_event_function_highlighting = none
# Repeated access of property on built in component is inefficient
resharper_unity_inefficient_property_access_highlighting = none
# Scene does not exist
resharper_unity_load_scene_unexisting_scene_highlighting = none
# Scene is disabled in the build settings
resharper_unity_load_scene_disabled_scene_name_highlighting = none
# 'ScriptableObject' instances must be instantiated with 'ScriptableObject.CreateInstance<T>()' instead of 'new'
resharper_unity_incorrect_scriptable_object_instantiation_highlighting = none
# Setting 'parent' property immediately after object instantiation is inefficient
resharper_unity_instantiate_without_parent_highlighting = none
# Short scene name is not unique
resharper_unity_load_scene_ambiguous_scene_name_highlighting = none
# String based graphics property lookup is inefficient
resharper_unity_prefer_address_by_id_to_graphics_params_highlighting = none
# String based lookup of component type is inefficient
resharper_unity_prefer_generic_method_overload_highlighting = none
# SystemApi.Query<...> type parameters must be Aspect, RefRO, or RefRW
resharper_unity_entities_must_be_surrounded_with_ref_rw_ro_highlighting = none
# The index is missing in the build settings
resharper_unity_load_scene_wrong_index_highlighting = none
# The input name is not defined in the Input manager
resharper_unity_unknown_input_axes_highlighting = none
# The layer is not defined in the 'Tags & Layers'
resharper_unity_unknown_layer_highlighting = none
# The resource is not defined in the project
resharper_unity_unknown_resource_highlighting = none
# The same shortcut is defined for another menu item
resharper_unity_duplicate_shortcut_highlighting = none
# The tag is not defined in the 'Tags & Layers'
resharper_unity_unknown_tag_highlighting = none
# There is no animator state with the same name in the project.
resharper_unity_unknown_animator_state_name_highlighting = none
# There is no scene with the same name in the build settings
resharper_unity_load_scene_unknown_scene_name_highlighting = none
# To use the result of a 'GetSingleton' call in the function, 'OnCreate' must include a 'RequireForUpdate' call
resharper_unity_entities_singleton_must_be_requested_highlighting = none
# Use 'CompareTag' instead of explicit string comparison
resharper_unity_explicit_tag_comparison_highlighting = none
# Accessing managed indexers is not supported
resharper_unity_burst_accessing_managed_indexer_highlighting = none
# Accessing managed methods is not supported
resharper_unity_burst_accessing_managed_method_highlighting = none
# Boxing is not supported
resharper_unity_burst_boxing_not_supported_highlighting = none
# Burst: String.Format(format, ...) invalid argument type
resharper_unity_burst_string_format_invalid_argument_highlighting = none
# Burst: The variable resolves to System.String, which may result in invalid managed method calls at the Burst-compiled call stack
resharper_unity_burst_local_string_variable_declaration_highlighting = none
# Creating a managed type is not supported
resharper_unity_burst_creating_managed_type_highlighting = none
# Debug logging functions only accept strings
resharper_unity_burst_debug_log_invalid_argument_highlighting = none
# Function signature cannot contain managed types
resharper_unity_burst_function_signature_contains_managed_types_highlighting = none
# Loading from a non-readonly static field is not supported
resharper_unity_burst_loading_static_not_readonly_highlighting = none
# Loading managed type is not supported
resharper_unity_burst_loading_managed_type_highlighting = none
# Shared static type parameter requires the unmanaged constraint
resharper_unity_shared_static_unmanaged_type_highlighting = none
# Some SharedStatic`1.GetOrCreate overloads cause compiler errors
resharper_unity_burst_shared_static_create_highlighting = none
# String.Format(format, ...) only accepts string literals and const strings
resharper_unity_burst_string_format_invalid_format_highlighting = none
# The 'foreach' construction is not supported
resharper_unity_burst_foreach_not_supported_highlighting = none
# Try statement is not supported
resharper_unity_burst_try_not_supported_highlighting = none
# Typeof is prohibited in Burst
resharper_unity_burst_typeof_expression_highlighting = none
# Writing to a static field is not supported
resharper_unity_burst_write_static_field_highlighting = none
# 'Camera.main' is expensive
resharper_unity_performance_critical_code_camera_main_highlighting = none
# Expensive method invocation
resharper_unity_performance_critical_code_invocation_highlighting = none
# Expensive null comparison
resharper_unity_performance_critical_code_null_comparison_highlighting = none
# Order of multiplication operations is inefficient
resharper_unity_inefficient_multiplication_order_highlighting = none
# Use jagged or one-dimensional array instead of multidimensional array
resharper_unity_inefficient_multidimensional_array_usage_highlighting = none
# Dependency for the plugin is missing in the project file [CSharpMissingPluginDependency] | https://www.jetbrains.com/help/resharper/CSharpMissingPluginDependency.html
resharper_c_sharp_missing_plugin_dependency_highlighting = error # +
# Module with this name does not exist [CSharpBuildCSInvalidModuleName] | https://www.jetbrains.com/help/resharper/CSharpBuildCSInvalidModuleName.html
resharper_c_sharp_build_cs_invalid_module_name_highlighting = error # +
# Console output in Xunit tests [Xunit.XunitTestWithConsoleOutput] | https://www.jetbrains.com/help/resharper/Xunit.XunitTestWithConsoleOutput.html
resharper_xunit_xunit_test_with_console_output_highlighting = error # +
# C# 14 breaking change in overload resolution with span parameters [CSharp14OverloadResolutionWithSpanBreakingChange] | https://www.jetbrains.com/help/resharper/CSharp14OverloadResolutionWithSpanBreakingChange.html
resharper_c_sharp14_overload_resolution_with_span_breaking_change_highlighting = none # rejected
# Short-lived 'HttpClient' [ShortLivedHttpClient] | https://www.jetbrains.com/help/resharper/ShortLivedHttpClient.html
resharper_short_lived_http_client_highlighting = error # ++
# Obsolete or nonstandard element
resharper_html_obsolete_highlighting = none
# Path error
resharper_html_path_error_highlighting = none
# Parameter can be declared with the base type [SuggestBaseTypeForParameter] | https://www.jetbrains.com/help/resharper/SuggestBaseTypeForParameter.html
resharper_suggest_base_type_for_parameter_highlighting = error
## **END** ReSharper Inspect Code **END**
@kurnakovv

Copy link
Copy Markdown
Author

My favorite Inspect Code rules

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment