You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Implement standard exception constructors - not all of the exception constructors (e.g., parameterless) are desired in our system. -->
6
6
<RuleId="CA1032"Action="None" />
7
+
<!-- Do not nest types - we do that special for the DynamicProxy testing because there are lots of overlapping scenarios to test and interfaces/classes do need to be public. -->
8
+
<RuleId="CA1034"Action="None" />
9
+
<!-- Identifiers should not contain underscores - underscores are helpful in test naming. -->
10
+
<RuleId="CA1707"Action="None" />
7
11
<!-- Change names to avoid reserved word overlaps (e.g., Delegate, GetType, etc.) - too many of these in the public API, we'd break if we fixed it. -->
8
12
<RuleId="CA1716"Action="None" />
9
13
<!-- Change Dispose() to call GC.SuppressFinalize - in tests we don't really care and it can impact readability. -->
@@ -32,6 +36,8 @@
32
36
<RuleId="SA1203"Action="None" />
33
37
<!-- Enforce order of static vs. non-static members -->
34
38
<RuleId="SA1204"Action="None" />
39
+
<!-- Modifiers are not ordered - .editorconfig handles this -->
40
+
<RuleId="SA1206"Action="None" />
35
41
<!-- Enforce order of readonly vs. non-readonly members -->
0 commit comments