[DevExpress Support Team: CLONED FROM T662681: CodeRush Wrapping for Expression bodies are not correct]
Hi Dmitry
It seems the issue for "Expression bodies" and "Wrap if long or multiline" is fixed, The issue for "Base list" has occured again. If I try "Propertiy \ Indexer \ Event", there are a issue with filled setters.
Please find the problems in the attached video.
I have reproduced the problem with the attached CodeRush settings and for the following code snippet:
Actual code:
namespace ConsoleApp1 { interface Interface1 { } class Class1 : Interface1 { } }
After formatting:
namespace ConsoleApp1 { interface Interface1 { } class Class1 : Interface1 { } }
Expected result:
namespace ConsoleApp1 { interface Interface1 { } class Class1 : Interface1 { } }