Skip to content

Formatting Removes Blank Lines at the Beginning and End of Blocks #105

Open
@miros476

Description

@miros476

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions