-
Notifications
You must be signed in to change notification settings - Fork 509
Closed
Description
All violations of rule SA1109 (BlockStatementsMustNotContainEmbeddedRegions) are also violations of rule SA1123 (DoNotPlaceRegionsWithinElements). I propose disabling SA1109 the same way we disabled SA1126 (in #997) for the following reasons:
- Rule SA1109 is a subset of another rule; disabling the rule still leaves users with a warning and a code fix for less computational work.
- Violations of SA1109 are rare; special-casing this rule is unlikely to ever provide significant benefits to users.
Reactions are currently unavailable