Earlz
Earlz

Reputation: 63825

How do I keep Resharper from massively indenting lambdas?

I have Resharper installed with mainly default settings. Currently, I'd like my multi-line lambda expressions to look something like this:

foobarclass.biz.baz.Event += (s, e) =>
  {
    foo.Bar.DoThings.Whatever();
  };

However, Resharper "helpfully" will reformat my code to be like this:

foobarclass.biz.baz.Event += (s, e) =>
                                 {
                                     foo.Bar.DoThings.Whatever();
                                 };

And in some cases, will also break up long statements so it ends up looking like this:

foobarclass.biz.baz.Event += (s, e) =>
                                 {
                                     foo.
                                        Bar.
                                        DoThings.
                                        Whatever();
                                 };

As you can tell, this auto-formatting makes code a lot less readable. How can I fix this kind of behavior?

Upvotes: 21

Views: 2917

Answers (1)

Levi Botelho
Levi Botelho

Reputation: 25214

Try unchecking:

RESHARPER -> OPTIONS -> C# -> Formatting Style -> Other -> Indent Anonymous Method Body

Upvotes: 24

Related Questions