0.0.51 • Published 1 year ago

eslint-plugin-midi-plugin-import v0.0.51

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

eslint-plugin-midi-plugin-import

the plugin for fix paths of imports

page on GitHub

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-midi-plugin-import:

npm install eslint-plugin-midi-plugin-import --save-dev

Usage

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

{
    "plugins": [
        "midi-plugin-import"
    ]
}

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

This rule is necessary to check the use of relative paths inside slices in accordance with the FSD methodology. (This rule has a fixer.)

{
    "rules": {
        "midi-plugin-import/path-check": 2
    }
}

This rule is necessary to control the production of absolute imports from the public API only. (This rule has a fixer.)

{
    "rules": {
        "midi-plugin-import/public-api-imports": 2
    }
}

This rule is necessary to control the production of imports from the underlying layers. (This rule doesn't have a fixer.)

{
    "rules": {
        "midi-plugin-import/layer-imports": 2
    }
}

If you use an absolute path alias, you need to include the "aliasAbsolutePath" parameter and the alias name.

{
    "rules": {
        "midi-plugin-import/{rule-name}": [2, {"aliasAbsolutePath": "@"}]
    }
}

Rules

🔧 Automatically fixable by the --fix CLI option.

Name              Description🔧
layer-importsrestriction on importing overlying layers into underlying ones
path-checkchecking correct path for feature sliced design🔧
public-api-importsThe rule prohibits the use of components not from public API🔧
0.0.51

1 year ago

0.0.50

1 year ago

0.0.49

1 year ago

0.0.47

1 year ago

0.0.48

1 year ago

0.0.44

1 year ago

0.0.45

1 year ago

0.0.46

1 year ago

0.0.42

1 year ago

0.0.43

1 year ago

0.0.40

1 year ago

0.0.41

1 year ago

0.0.36

1 year ago

0.0.37

1 year ago

0.0.38

1 year ago

0.0.39

1 year ago

0.0.31

1 year ago

0.0.3

1 year ago

0.0.32

1 year ago

0.0.2

1 year ago

0.0.33

1 year ago

0.0.34

1 year ago

0.0.35

1 year ago

0.0.1

1 year ago

0.0.0

2 years ago