Currently, when you have the [order](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/order.md) rule turned on and the option `newlines-between` set to `always` it will give errors when you have something like this: ``` js import a from '/imports/config'; import b from '/imports/some/folder' ``` This will report having an empty line between the imports which in my opinion isn't correct. ### Proposal Add a new string to the order rule called `absolute`.