-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Closed
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issue
Milestone
Description
From @octref on May 29, 2018 14:51
My setting:
"typescript.preferences.quoteStyle": "auto"
Have file a.ts:
import { bar } from './b';
function foo() {
bar()
}
foo()b.ts:
export function bar() {
}Run Move to new file on the foo function.
a.ts becomes:
import { foo } from "./foo";
foo()foo.ts becomes:
import { bar } from './b';
export function foo() {
bar();
}The import statements have different quoting style.
Copied from original issue: microsoft/vscode#50680
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issue