We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
#50486
My setting:
"typescript.preferences.quoteStyle": "auto"
Have file a.ts:
a.ts
import { bar } from './b'; function foo() { bar() } foo()
b.ts:
b.ts
export function bar() { }
Run Move to new file on the foo function.
Move to new file
a.ts becomes:
import { foo } from "./foo"; foo()
foo.ts becomes:
foo.ts
import { bar } from './b'; export function foo() { bar(); }
The import statements have different quoting style.
The text was updated successfully, but these errors were encountered:
Bug is that auto's detected style gets lost during the removal of the old imports in a.ts
auto
You can fix this by explicitly setting the quote preference to single: microsoft/TypeScript#24363
single
Sorry, something went wrong.
This issue was moved to microsoft/TypeScript#24605
mjbvz
No branches or pull requests
#50486
My setting:
Have file
a.ts
:b.ts
:Run
Move to new file
on the foo function.a.ts
becomes:foo.ts
becomes:The import statements have different quoting style.
The text was updated successfully, but these errors were encountered: