Simple Atom tool for sorting your "require" and "import x from" by file path.
Example: This ...
import {buy} from "app/js/zoo-manager.js";import Cage from "app/js/cage.js";import Animal from "app/js/animal.js";
... will be converted to ...
import Animal from "app/js/animal.js";import Cage from "app/js/cage.js";import {buy} from "app/js/zoo-manager.js";
Good catch. Let us know what about this package looks wrong to you, and we'll investigate right away.