❔ EditorConfig Option to always go to new lines
Using this code as an example, which editorconfig option do I set to make each member always on a new line?
// Convert the dictionary to a list of DTOs
var responses = modelScores.Select(score => new AnalysisResponseDto
{
Model = xxx, Score = xxx
}).ToList();