import-sort icon indicating copy to clipboard operation
import-sort copied to clipboard

Sort ES2015 (aka ES6) imports. Both JavaScript and TypeScript are supported.

Results 69 import-sort issues
Sort by recently updated
recently updated
newest added

Bumps [bin-links](https://github.com/npm/bin-links) from 1.1.2 to 1.1.8. Changelog Sourced from bin-links's changelog. 1.1.8 (2020-03-24) 1.1.7 (2019-12-26) Bug Fixes resolve folder that is passed in (0bbd303) 1.1.6 (2019-12-11) Bug Fixes prevent improper...

dependencies

Hello, I love this automatic imports sorting plugin but it seems that it doesn't remove un-used imports when needed. I wonder if i've missed something or if this is normal...

Running prettier on a file with a comment as the last import duplicates that comment ![image](https://user-images.githubusercontent.com/3408480/85052694-673cb100-b167-11ea-848f-a85466964bb6.png) > the axios import is multiplied each time I run prettier This applies to...

> Related https://github.com/sindresorhus/globby/issues/81 File paths passed to `import-sort-cli` containing glob special characters -such as `[`, `(`, `]` and `)`- would not work with currently set `globby` dependency even though they...

Configuration: ``` "importSort": { ".js, .jsx, .es6, .es, .mjs": { "parser": "babylon", "style": "module", "options": {} }, ".ts, .tsx": { "parser": "typescript", "style": "module", "options": {} } }, ``` Import...

Hello, I was wondering how feasible it would be to allow users to store their configuration somewhere other than the root of the repository with a --config/ -c flag a...

Using Sort Imports version 6.1.0. When compiling this constructor declaration... ``` constructor( @Inject(DynamicDialogConfig) public dialogConfig: DynamicDialogConfig, private api: ApiService, private stores: StoreService, translate: TranslateService) { super(translate) } ``` the Sort...

I have this config for my eslint: ```json { "rules": { "import/order": [ "warn", { "groups": [ "builtin", "external", "internal", "parent", "sibling", "index" ] } ] } } ``` But...

I've always found it awkward to run import-sort and prettier in the editor since chaining these two is somewhat error prone and can easily have both running at the same...

We are using a method to import eslintConfig from another project, which I will demonstrate below, so that all our projects do not need to duplicate the same eslint rules....