ESlint plugin to comply with FSD (Feature Sliced Design) frontend architecture rules. FSD Architecture documentation
You'll first need to install ESLint:
npm i eslint --save-dev
Next, install eslint-plugin-fsd-architecture
:
npm install eslint-plugin-fsd-architecture --save-dev
Add fsd-architecture
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"fsd-architecture"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"fsd-architecture/rule-name": 2
}
}
Name | Description |
---|---|
import-path-check | Checking imports against FSD architecture rules |
layer-imports | Rule for check imports from layers structure of FSD architecture |
public-api-imports | FSD Architecture rule for public api imports |