@avaly/eslint-plugin-import-order
NOTE: This is a fork of the https://github.com/benmosher/eslint-plugin-import plugin which includes only the order
rule with Flow types support.
This was not accepted in the upstream project: https://github.com/benmosher/eslint-plugin-import/pull/732
Rules
Style guide:
- Enforce a convention in module import order (
order
)
Installation
yarn add -D @avaly/eslint-plugin-import-order
Usage
In your .eslintrc.js
:
module.exports = {
plugins: ['@avaly/eslint-plugin-import-order'],
rules: {
'@avaly/import-order/order': [ERROR],
}
};