File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
ValveKeyValue/ValveKeyValue Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ root = true
22
33[* .cs ]
44
5+ # CA1710: Identifiers should not have incorrect suffix (KVObject implements IReadOnlyDictionary but is not a dictionary)
6+ dotnet_diagnostic.CA1710.severity = none
7+
58# CA1711: Identifiers should not have incorrect suffix
69dotnet_diagnostic.CA1711.severity = none
710
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ namespace ValveKeyValue
1111 /// Keys (names) are stored in the parent container, not on the child.
1212 /// </summary>
1313 [ DebuggerDisplay ( "{DebuggerDescription}" ) ]
14- public partial class KVObject : IEnumerable < KeyValuePair < string , KVObject > >
14+ public partial class KVObject : IReadOnlyDictionary < string , KVObject >
1515 {
1616 #region Properties
1717
Original file line number Diff line number Diff line change 22
33namespace ValveKeyValue
44{
5- public partial class KVObject : IEnumerable < KeyValuePair < string , KVObject > >
5+ public partial class KVObject
66 {
77 /// <inheritdoc/>
88 public IEnumerator < KeyValuePair < string , KVObject > > GetEnumerator ( )
You can’t perform that action at this time.
0 commit comments