0.1.0 • Published 6 months ago

eslint-plugin-feature-slice-import-manager v0.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
6 months ago

eslint-plugin-feature-slice-import-manager

This ESLint plugin enforces best practices and consistent import ordering specific to the feature-sliced design architecture. It ensures that imports are structured and layered according to the feature-sliced methodology, promoting clean code separation and modular architecture. Ideal for projects seeking to maintain a scalable and organized codebase.

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-feature-slice-import-manager:

npm install eslint-plugin-feature-slice-import-manager --save-dev

Usage

Add feature-slice-import-manager to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "feature-slice-import-manager"
    ]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "feature-slice-import-manager/rule-name": 2
    }
}

Rules

TODO: Run eslint-doc-generator to generate the rules list.

0.1.0

6 months ago

0.0.9

6 months ago

0.0.8

6 months ago

0.0.7

6 months ago

0.0.6

6 months ago

0.0.5

6 months ago

0.0.4

6 months ago

0.0.3

6 months ago

0.0.2

6 months ago

0.0.1

6 months ago