plugin for correct imports
You'll first need to install ESLint:
npm i eslint --save-dev
Next, install eslint-plugin-fsd-import-checker
:
npm install eslint-plugin-fsd-import-checker --save-dev
Add fsd-import-checker
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"fsd-import-checker"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"fsd-import-checker/rule-name": 2
}
}
Name | Description |
---|---|
import-only-from-public-api | rule prohibiting importing from something other than a public api |
import-only-from-the-lower-layers | a rule that allows importing only from underlying layers |
path-checker | feature slice relative path checker |