Skip to content

Formatter in VS (2013) doesn't unindent a dangling closing bracket. #871

@zpdDG4gta8XKpMCd

Description

@zpdDG4gta8XKpMCd

Actual

export function f1(
    x: string,
    y: number
    ): boolean {
    return false;
}

export function f2() {
    return f1(
        '',
        0
        );
}

Expected

export function f1(
    x: string,
    y: number
): boolean {
    return false;
}

export function f2() {
    return f1(
        '',
        0
    );
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    BugA bug in TypeScriptFixedA PR has been merged for this issue

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions