We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
From @octref on May 29, 2018 14:51
#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.
Copied from original issue: microsoft/vscode#50680
From @octref on May 29, 2018 14:51
#50486
My setting:
Have file
a.ts:b.ts:Run
Move to new fileon the foo function.a.tsbecomes:foo.tsbecomes:The import statements have different quoting style.
Copied from original issue: microsoft/vscode#50680