0.0.2 • Published 2 years ago
eslint-plugin-import-path-checker-fsd v0.0.2
eslint-plugin-ubgbigtv-plugin-fsd-import-checker
plugin for correct imports
Installation
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-import-path-checker-fsd:
npm install eslint-plugin-import-path-checker-fsd --save-devUsage
Add import-path-checker-fsd to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"import-path-checker-fsd"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"fsd-import-checker/rule-name": 2
}
}Rules
🔧 Automatically fixable by the --fix CLI option.
| 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 |