I can't seem to find the formatter settings to prevent Eclipse from putting block style declarations on the same line.
For example, if I type the code like this:
private string[] myData={
"someValue1",
"someValue2",
"someValue3",
"someValue4",
"someValue5",
"someValue5"
}
Upon running Eclipse's Auto Formatter, the previous declaration then looks like:
private string[] myData={
"someValue1", "someValue2", "someValue3", "someValue4", "someValue5", "someValue5"};
Is there a way to avoid this?