dfmt icon indicating copy to clipboard operation
dfmt copied to clipboard

space after brackets and/or parens

Open deviator opened this issue 10 years ago • 0 comments

what about format rule like this

// before
void func(int[] a = [1,2,3,4]);
// after
void func( int[] a = [ 1, 2, 3, 4 ] ); // empty brackets (or parens) must not breaked by space

?

deviator avatar Jun 18 '15 02:06 deviator