Skip to content

Configure implement interface quick fix quote type #18169

Closed
@mjbvz

Description

@mjbvz

From microsoft/vscode#33476

TypeScript Version: 2.5.1

Code

interface IFoo {
    bar(): number;
}

class Foo implements IFoo {
    
}

Trigger the implement interface quick fix on class Foo

Expected behavior:
Users can configure if single or double quotes are used for the Method not implemented error

Actual behavior:
Double quotes are always used for the Method not implemented error

interface IFoo {
    bar(): number;
}

class Foo implements IFoo {
    bar(): number {
        throw new Error("Method not implemented.");
    }

}

Related to #13270

Metadata

Metadata

Assignees

No one assigned

    Labels

    BugA bug in TypeScriptFixedA PR has been merged for this issueVS Code TrackedThere is a VS Code equivalent to this issue

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions