Open
Description
I follow the rule of adding a blank line at the start and end of a block for readability. However, I noticed that these blank lines are removed automatically. Would it be possible to preserve them?
Current behaviour
export class ListComponent {
/**
* This is property A
*/
private __propertyA?: number;
/**
* This is property B
*/
private __propertyB?: number;
}
Expected behaviour
export class ListComponent {
/**
* This is property A
*/
private __propertyA?: number;
/**
* This is property B
*/
private __propertyB?: number;
}
Metadata
Metadata
Assignees
Labels
No labels