Editorconfig Guide.e

Space before comma

EditorConfig key: csharp-space-before-comma

Space before comma

csharp-space-before-comma

This option controls whether a space should precede a comma.

Default value:

false

Possible values:

  • true
  • false

Examples

true
var list = [1 , 2 , 3];
false
var list = [1, 2, 3];