@clark/eslint-config-node-order-imports
v2.0.0
Published
Sorts ES module imports for Node.js projects
Downloads
802
Readme
@clark/eslint-config-node-order-imports
Sorts ES module imports for Node.js projects
Installation
If you use the @clark/eslint-config-node
or
@clark/eslint-config-node-typescript
, you
don't need to do anything, as they already include this config.
If you don't like our config and just want to order your imports while using
your own eslint config, just install this package and add it to extends
.
yarn add -D eslint @clark/eslint-config-node-order-imports
module.exports = {
extends: ["@clark/node-order-imports"],
rules: {
// your rules here
},
};
What does it do?
This is a distributable standalone config for
eslint-plugin-import-helpers
that orders the
ES module imports. The order is a s follows:
- Node standard modules:
fs
,http
, ... - Named modules, e.g. installed from npm:
lodash
,dotenv/register
- Absolute paths (very uncommon):
/foo/bar
- Parent modules:
../foo
- Sibling modules:
./bar
- Index:
./