We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From microsoft/vscode#101219
TypeScript Version: 4.0.0-dev.20200629
Search Terms:
Code Using "typescript.preferences.quoteStyle": "single"
"typescript.preferences.quoteStyle": "single"
interface IFoo { a(x: 'abc') : void; } class Foo implements IFoo { }
Run implement interface on Foo
Foo
Bug: The parameter value uses double quotes:
class Foo implements IFoo { a(x: "abc"): void { throw new Error('Method not implemented.'); } }
Also, if typescript.preferences.quoteStyle is unset, it would be nice if we used the original quote style for implement interface
typescript.preferences.quoteStyle
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
From microsoft/vscode#101219
TypeScript Version: 4.0.0-dev.20200629
Search Terms:
Code
Using
"typescript.preferences.quoteStyle": "single"
Run implement interface on
Foo
Bug:
The parameter value uses double quotes:
Also, if
typescript.preferences.quoteStyle
is unset, it would be nice if we used the original quote style for implement interfaceThe text was updated successfully, but these errors were encountered: