Question
How to stop ReSharper removing spaces in object initializer
I like my object initializers to look like this:
new Point { Label = g.Key.Name, Claims = g };
When hit the semicolon key, they get reformatted like this:
new Point {Label = g.Key.Name, Claims = g};
Where is the option to stop my padding from being removed?