开发者

Is there a way to mark up code to tell ReSharper not to format it?

开发者 https://www.devze.com 2022-12-18 12:14 出处:网络
I quite often use the ReSharper \"Clean Up Code\" command to format my code to our coding style before checking it into source control. This works well in general, but some bits of code are better f开

I quite often use the ReSharper "Clean Up Code" command to format my code to our coding style before checking it into source control. This works well in general, but some bits of code are better f开发者_StackOverflow社区ormatted manually (eg. because of the indenting rules in ReSharper, things like chained linq methods or multi-line ternary operators have a strange indent that pushes them way to the right).

Is there any way to mark up parts of a file to tell ReSharper not to format that area? I'm hoping for some kind of markup similar to how ReSharper suppresses other warnings/features. If not, is there some way of changing a combination of settings to get ReSharper to format the indenting correctly?

EDIT:

I have found this post from the ReSharper forums that says that generated code sections (as defined in the ReSharper options page) are ignored in code cleanup. Having tried it though, it doesn't seem to get ignored.


Resharper>Options>Languages>C#>Formatting Style>Other>

Uncheck "Indent anonymous method body" and "Indent array, object and collection initilizer blocks" and anything else that strikes your fancy.


As a last resort, if you've got legacy code that you don't want to format but you want additions to the class to be nicely formatted, then make the class partial and put new code in the new file.


Check out this question I asked that involves the same issue: Resharper formatting code into a single line

The answer I got there work really good for me.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号