sort-typescript-imports
sort-typescript-imports copied to clipboard
VSCode extenstion to sort import statements in Typescript code
Results
2
sort-typescript-imports issues
Sort by
recently updated
recently updated
newest added
Prettier always append a comma at the end when it breaks a destructing import statement into multiple lines. And the current regex used here won't match them resulting those statements...
Hello! This PR adds support for removing the whitespace from single line imports like so `import {'foo'} from 'bar';` as opposed to `import { 'foo' } from 'bar';`