Suggestion to add chained calls for formatting
I suggest to add chained call formating to list of "Line Breaks and Wrapping. For example, let's say I have the following line:
Expect.Call(dao.LockRecordDAO.GetProcessedOrLockedRecordIds(typeof (Alert).Name)).Return(new List<long> {1});
When I format that code, what I get is:
Expect.Call(dao.LockRecordDAO.GetProcessedOrLockedRecordIds(typeof (Alert).Name)).Return(
new List<long> {1});
It's nice if I can have an option to get the following:
Expect.Call(dao.LockRecordDAO.GetProcessedOrLockedRecordIds(typeof (Alert).Name))
.Return(new List<long> {1});
Or maybe there's a way to configure wrapping for this. Any advice? Otherwise it's nice if R# add this as an option.
Thanks,
Ali B
Please sign in to leave a comment.