@@ -48,6 +48,18 @@ resharper_negative_equality_expression_highlighting = error
4848# Replace with single call to Count(..)
4949resharper_replace_with_single_call_to_count_highlighting = error
5050
51+ # Cast expression can be replaced with explicit type arguments
52+ resharper_can_replace_cast_with_type_argument_highlighting = error
53+
54+ # Cast expression can be replaced with simplified type arguments
55+ resharper_can_replace_cast_with_shorter_type_argument_highlighting = error
56+
57+ # Cast expression can be replaced with explicit variable type
58+ resharper_can_replace_cast_with_variable_type_highlighting = error
59+
60+ # Cast expression can be replaced with lambda return type
61+ resharper_can_replace_cast_with_lambda_return_type_highlighting = error
62+
5163# Declare types in namespaces
5264dotnet_diagnostic.CA1050.severity = none
5365
@@ -236,6 +248,9 @@ resharper_arrange_static_member_qualifier_highlighting = error
236248resharper_arrange_this_qualifier_highlighting = error
237249resharper_arrange_type_member_modifiers_highlighting = none
238250resharper_arrange_type_modifiers_highlighting = none
251+ # Do not require an explicit internal/private modifier on types and members ("missing 'internal' modifier")
252+ csharp_default_internal_modifier = implicit
253+ csharp_default_private_modifier = implicit
239254resharper_built_in_type_reference_style_for_member_access_highlighting = hint
240255resharper_built_in_type_reference_style_highlighting = hint
241256resharper_check_namespace_highlighting = none
0 commit comments