Editorconfig Guide.e

Space around declaration statements

EditorConfig key: csharp-space-around-declaration-statements

Space around declaration statements

csharp-space-around-declaration-statements

This option controls how extra whitespace in declaration statements is treated.

Default value:

false

Possible values:

  • ignore
  • false

Examples

ignore
int x   =    1;
false
int x = 1;