Skip to content

Commit 9d0e59b

Browse files
committed
refs or cleanup
1 parent 721da6f commit 9d0e59b

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
@@ -12,17 +12,17 @@
1212
<PackageVersion Include="Newtonsoft.Json" Version="13.0.4" />
1313
<PackageVersion Include="NodaTime" Version="3.3.3" />
1414
<PackageVersion Include="Polyfill" Version="11.0.1" />
15-
<PackageVersion Include="ProjectDefaults" Version="1.0.175" />
15+
<PackageVersion Include="ProjectDefaults" Version="1.0.176" />
1616
<PackageVersion Include="ProjectFiles" Version="1.4.0" />
1717
<PackageVersion Include="System.ValueTuple" Version="4.5.0" Pinned="true" />
18-
<PackageVersion Include="Verify.XunitV3" Version="31.27.0" />
18+
<PackageVersion Include="Verify.XunitV3" Version="31.28.0" />
1919
<PackageVersion Include="xunit.v3" Version="3.2.2" />
2020
<PackageVersion Include="System.Buffers" Version="4.6.1" />
2121
<PackageVersion Include="System.Memory" Version="4.6.3" />
2222
<PackageVersion Include="System.Collections.Immutable" Version="8.0.0" Pinned="true" />
2323
<PackageVersion Include="DiffEngine" Version="19.3.3" />
2424
<PackageVersion Include="EmptyFiles" Version="8.18.2" />
2525
<PackageVersion Include="SimpleInfoName" Version="3.2.0" />
26-
<PackageVersion Include="Verify" Version="31.27.0" />
26+
<PackageVersion Include="Verify" Version="31.28.0" />
2727
</ItemGroup>
2828
</Project>

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)