Open
Description
TypeScript Version: 2.9.0-dev.20190327
Search Terms:
- Organize imports
Code
- For the js:
import { x } from 'x';
import { y } from 'y';
console.log(x, y)
- Run organize imports.
Expected behavior:
Blank lines within the import are removed
import { x } from 'x';
import { y } from 'y';
console.log(x, y)
Actual behavior:
Blanklines preserved but shifted to end of imports:
import { x } from 'x';
import { y } from 'y';
console.log(x, y)