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

[PLACEHOLDER] Sort ES2015 (aka ES6) imports. Manually – or automatically when you save your JavaSript or TypeScript files.

Results 9 atom-import-sort issues
Sort by recently updated
recently updated
newest added

Example: ``` import type { a } from "a"; import type { b } from "B"; import { c } from "c"; import d from "d"; ```

Hi, Why not adding the possibility to change to default sorting mode directly front Atom config? I don't want the `atom-import-sort` config in my codebase

(Apologies. I originally posted this issue in the wrong repo; moving https://github.com/renke/import-sort/issues/105 here.) Atom v1.41.0 atom-import-sort v6.0.0 The "Sort on save" option works as expected, but I can't seem to...

I haven't figure out how to reproduce it reliably, but when using `[email protected]` with `Format Files on Save` enabled, sometimes `atom-import-sort` will fail to sort.

I'm seeing this warning in Atom with v6.0: ``` Argument to path.dirname must be a string Object.dirname - /Applications/Atom.app/Contents/Resources/app.asar/src/electron-shims.js:9:10 module.exports.moduleId - /Users/chadhamre/.atom/packages/atom-import-sort/node_modules/eslint/node_modules/import-fresh/index.js:11:36 loadJSConfigFile - /Users/chadhamre/.atom/packages/atom-import-sort/node_modules/eslint/lib/config/config-file.js:159:16 loadConfigFile - /Users/chadhamre/.atom/packages/atom-import-sort/node_modules/eslint/lib/config/config-file.js:214:22 loadFromDisk -...

The GIF demo is showing exactly what I'd like to have, but when I'm running the package using `CTRL` + `ALT` + `o`, I don't have the excepted result. Here...

I am a new user and just installed the plugin. Upon first run go error: > Failed to sort imports: Error: 'pipelineOperator' requires 'proposal' option whose value should be one...

Before: ![image](https://user-images.githubusercontent.com/1592820/31771229-3ca0eeb8-b4d3-11e7-900f-039dfd6ef0fb.png) Ctrl Alt -o ![image](https://user-images.githubusercontent.com/1592820/31771252-4d3ba678-b4d3-11e7-9ae9-eec6c9235266.png)

Hi, I wanted to test your work and add a functionnality to sort correctly when importing packages with webpack (like `~components/Something.js`) but I clone it and npm i send those...