Object Initializer Formatting

274 Views Asked by At

Which setting(s) in Resharper 8 are reformatting my object initializer like this? (i.e. with the comma on it's own line).

var snowDepthProcessor = new DataProcessor<SnowDepthModel>
{
    Name = "Snow Depth"
    ,
    DataRetriever = snowReportRetriever
    ,
    Parser = new SnowDepthParser()
    ,
    ...
};

I've tried every combination of settings I can find/think of; I do want the lines chopped but I don't want the comma to be on its own line.

1

There are 1 best solutions below

0
On

I share your pain. I've to admit my solution is just partial because it needs change style from what you'd like to use to

List<string> demo = new List<string>
{
    "a",
    "b",
    "c"
}

Then formatting is not changed. I'd also much rather use syntax you've described so I've created R# ticket https://youtrack.jetbrains.com/issue/RSRP-453704 but until it's resolved this is only way how suppress that (it behave in same way even in latest R#10)

EDIT: Good news. Seems to be fixed since R# 2017.1