History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: RSRP-4713
Type: New Feature New Feature
Status: Open Open
Priority: Normal Normal
Assignee: Eugene Pasynkov
Reporter: Valentin Kipiatkov
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
ReSharper

Code formatter options: missing options for blank lines in properties

Created: 05 Aug 06 01:18   Updated: 20 May 07 19:19
Component/s: Code Cleanup
Fix Version/s: Future Versions
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Old URL: http://www.intellij.net/tracker/resharper/viewSCR?publicId=4713


 Description  « Hide
User wrote:
> Can it to be added to strongly formatting rules (option - 
> always obey)?
> 
> /*
> public int SampleProperty
> {
>   get {return _sampleProperty;}
> 
>   set
>   {
>     // Compound block.
>     _sampleProperty = value;
>   }
> }
> 
> public int SampleProperty
> {
>   get
>   {
>     // Compound block.
>     return _sampleProperty;
>   }
> 
>   set {_sampleProperty = value;}
> }
> 
> public int SampleProperty
> {
>   get {return _sampleProperty;}
>   set {_sampleProperty = value;}
> }
> */

> [*] Look at the line break between get and set blocks when one of it
> is compound. And there is no line break when both of it is simple!



 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.