eslint-plugin-netliukh-demian-fsd-plugin

Plugin designed to find and fix Feature-sliced design violations.

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-netliukh-demian-fsd-plugin:

npm install eslint-plugin-netliukh-demian-fsd-plugin --save-dev

Usage

Add netliukh-demian-fsd-plugin to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
  "plugins": ["netliukh-demian-fsd-plugin"]
}

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

{
  "rules": {
    "netliukh-demian-fsd-plugin/rule-name": 2
  }
}

Rules

Name               Description
check-path Check is path should be relative according to Feature-sliced design methodology.
layer-imports Check for imports from upper layers
public-api-imports Checks if absolute path imports from public api