Editorconfig Guide

Generate your .editorconfig file with ease.

Space around declaration statements

csharp-space-around-declaration-statements

Default value:

false

Possible values:

  • ignore
  • false

Examples

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