@avaly/eslint-plugin-import-order

ESLint import order with Flow types support

Usage no npm install needed!

<script type="module">
  import avalyEslintPluginImportOrder from 'https://cdn.skypack.dev/@avaly/eslint-plugin-import-order';
</script>

README

@avaly/eslint-plugin-import-order

build status

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

# inside your project's working tree
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],
  }
};