Skip to content

Commit 0a91fa2

Browse files
committed
refs or cleanup
1 parent e015f62 commit 0a91fa2

3 files changed

Lines changed: 20 additions & 3 deletions

File tree

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,18 @@ resharper_negative_equality_expression_highlighting = error
4848
# Replace with single call to Count(..)
4949
resharper_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
5264
dotnet_diagnostic.CA1050.severity = none
5365

@@ -236,6 +248,9 @@ resharper_arrange_static_member_qualifier_highlighting = error
236248
resharper_arrange_this_qualifier_highlighting = error
237249
resharper_arrange_type_member_modifiers_highlighting = none
238250
resharper_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
239254
resharper_built_in_type_reference_style_for_member_access_highlighting = hint
240255
resharper_built_in_type_reference_style_highlighting = hint
241256
resharper_check_namespace_highlighting = none

src/Directory.Packages.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<PackageVersion Include="NUnit" Version="4.6.1" />
1111
<PackageVersion Include="NUnit3TestAdapter" Version="6.2.0" />
1212
<PackageVersion Include="Polyfill" Version="11.0.1" />
13-
<PackageVersion Include="ProjectDefaults" Version="1.0.175" />
14-
<PackageVersion Include="Verify" Version="31.27.0" />
15-
<PackageVersion Include="Verify.Nunit" Version="31.27.0" />
13+
<PackageVersion Include="ProjectDefaults" Version="1.0.176" />
14+
<PackageVersion Include="Verify" Version="31.28.0" />
15+
<PackageVersion Include="Verify.Nunit" Version="31.28.0" />
1616
<PackageVersion Include="Microsoft.Sbom.Targets" Version="4.1.5" />
1717
<PackageVersion Include="Argon" Version="0.35.2" />
1818
<PackageVersion Include="DiffEngine" Version="19.3.3" />

src/Shared.sln.DotSettings

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<s:Boolean x:Key="/Default/CodeEditing/ContextActionTable/DisabledContextActions/=JetBrains_002EReSharper_002EIntentions_002ECSharp_002EContextActions_002EUseConfigureAwaitFalseAction/@EntryIndexedValue">True</s:Boolean>
77
<s:Boolean x:Key="/Default/CodeInspection/ExcludedFiles/FileMasksToSkip/=_002AMigrations_002A/@EntryIndexedValue">True</s:Boolean>
88
<s:Boolean x:Key="/Default/CodeInspection/ExcludedFiles/FileMasksToSkip/=_002A_002EDesigner_002Ecs/@EntryIndexedValue">True</s:Boolean>
9+
<s:Boolean x:Key="/Default/CodeInspection/ExcludedFiles/FileMasksToSkip/=_002A_002Ereceived_002E_002A/@EntryIndexedValue">True</s:Boolean>
10+
<s:Boolean x:Key="/Default/CodeInspection/ExcludedFiles/FileMasksToSkip/=_002A_002Everified_002E_002A/@EntryIndexedValue">True</s:Boolean>
911
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=AllUnderscoreLocalParameterName/@EntryIndexedValue">DO_NOT_SHOW</s:String>
1012
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=ArrangeAccessorOwnerBody/@EntryIndexedValue">ERROR</s:String>
1113
<s:String x:Key="/Default/CodeInspection/Highlighting/InspectionSeverities/=ArrangeConstructorOrDestructorBody/@EntryIndexedValue">ERROR</s:String>

0 commit comments

Comments
 (0)