Modifiers and Braces
Controls modifier ordering (IDE0036), brace insertion for unbraced control-flow bodies (IDE0011), and conversion of block-scoped namespaces to file-scoped (IDE0161). All three are applied without a compilation.
csharp_prefer_braces
Add braces to unbraced control-flow bodies. IDE0011. Applied without a compilation. Defaults to `false`
csharp_preferred_modifier_order
Reorder modifiers to the specified preference. IDE0036. Applied without a compilation. Defaults to `(not set)`
csharp_style_namespace_declarations
Convert block namespaces to file-scoped. IDE0161. Applied without a compilation. Defaults to `(as written)`