eslint-plugin-import-fsd
v3.0.2
Published
A smart ESLint plugin that helps you enforce and maintain Feature-Sliced Design (FSD) architecture. Automatically validates layer hierarchy and import boundaries to prevent architectural leaks.
Maintainers
Readme
eslint-plugin-import-fsd
A smart ESLint plugin that helps you enforce and maintain Feature-Sliced Design architecture. It automatically validates your imports and file boundaries, preventing architectural leaks. Fully compatible with FSD up to v2.
Contents:
🚀 Getting started
Install eslint-plugin-import-fsd to your repository as dev dependency:
npm install eslint-plugin-import-fsd --save-dev
# or
pnpm install eslint-plugin-import-fsd --save-dev
# or
yarn add eslint-plugin-import-fsd --devThe easiest way to use this plugin is to add its recommended configuration to your ESLint flat config file. It automatically includes the plugin and sets up the best practices:
/* eslint.config.js */
import importFsdPlugin from 'eslint-plugin-import-fsd';
export default [
importFsdPlugin.configs.recommended,
// You must specify the root directory of your FSD layers
{
settings: {
fsd: {
rootDir: './src',
},
},
},
];If you prefer full control, you can define the plugin and its rules manually instead of using the recommended config:
/* eslint.config.js */
import importFsdPlugin from 'eslint-plugin-import-fsd';
export default [
{
plugins: {
'import-fsd': importFsdPlugin,
},
settings: {
fsd: {
rootDir: './src',
},
},
rules: {
'import-fsd/no-denied-layers': 'error',
},
},
];⚙️ Settings
rootDir
Defines a directory that follows the FSD methodology. If not specified, the root directory will default to the directory containing the ESLint configuration file or the path passed with the cwd linter option.
The value can be an absolute path or a relative path (resolved relative to the directory containing the ESLint configuration file) to the folder with the layers. Files and folders lying directly in this directory will be considered as layers.
For example, if your FSD layers are located in the src folder in the same directory as the ESLint configuration file, the rootDir option should be set as follows:
/* eslint.config.js */
import importFsdPlugin from 'eslint-plugin-import-fsd';
export default [
{
settings: {
fsd: {
rootDir: './src',
},
},
},
];aliases
Tells the plugin which aliases used in your project should be handled.
The path associated with an alias can be absolute or relative to the project root directory. Other values will not be resolved and will be used as is.
Alias patterns can contain the * wildcard that matches any string. If it's present, the matching part will be substituted into the path associated with the alias.
If an import path matches multiple aliases, the first match will be applied.
Example:
/* eslint.config.js */
import importFsdPlugin from 'eslint-plugin-import-fsd';
export default [
{
settings: {
fsd: {
rootDir: './scr',
aliases: {
// @/features/foo/bar -> ./src/features/foo/bar
'@/*': './src/*',
// foo -> ./vendor/foo
foo: './vendor/foo',
// bar -> /bar
bar: '/bar',
// baz -> baz/qwe
// qux -> qwe/qwe
baz: 'baz/qwe',
'*': 'qwe/qwe',
qux: 'qux/qwe',
},
},
},
},
];overrides
Assigns a layer and slice to a specified import path.
Once a layer and slice are assigned to an import path, it will be considered part of the project's FSD file structure.
Path patterns can contain the * wildcard that matches any string.
If an import path matches multiple overrides, the first match will be applied.
Example:
/* eslint.config.js */
import importFsdPlugin from 'eslint-plugin-import-fsd';
export default [
{
settings: {
fsd: {
overrides: {
// foo -> features/foo
foo: { layer: 'features', slice: 'foo' },
// bar/baz -> features/bar
'bar/*': { layer: 'features', slice: 'bar' },
// @baz -> features/qwe
'*': { layer: 'features', slice: 'qwe' },
'@baz': { layer: 'features', slice: 'baz' },
},
},
},
},
];🛡️ Rules
no-denied-layers
Prevents importing from a denied layer into the current one.
FSD layers have the following hierarchy, where the first layer has the highest rank and the last one has the lowest:
appprocesses(deprecated)pageswidgetsfeaturesentitiesshared
Modules within a layer can only import from layers strictly below them in the hierarchy:
| Layer | Available layers |
| ----------- | ----------------------------------------------------------------- |
| app | processes, pages, widgets, features, entities, shared |
| processes | pages, widgets, features, entities, shared |
| pages | widgets, features, entities, shared |
| widgets | features, entities, shared |
| features | entities, shared |
| entities | shared |
| shared | — |
Modules within a slice can import from other segments in the same slice, but cannot import from other slices on the same layer.
Example:
/* eslint.config.js */
import importFsdPlugin from 'eslint-plugin-import-fsd';
export default [
{
plugins: {
'import-fsd': importFsdPlugin,
},
settings: {
fsd: {
rootDir: './src',
aliases: {
'@/*': './src/*',
},
},
},
rules: {
'import-fsd/no-denied-layers': 'error',
},
},
];/* src/features/foo/bar/qwe.js */
// 📛 Error (denied layers)
import foo from '@/app/foo/bar';
import foo from '@/processes/foo/bar';
import foo from '@/pages/foo/bar';
import foo from '@/widgets/foo/bar';
// ✅ OK
import foo from '@/entities/foo/bar';
import foo from '@/shared/foo/bar';
// 📛 Error (denied slice)
import foo from '@/features/baz/qux';
// ✅ OK
import foo from '@/features/foo/qux';Options
ignores- allows you to exclude imports from specific layers from being checked.The value must be an array of layer names.
Example:
/* eslint.config.js */ import importFsdPlugin from 'eslint-plugin-import-fsd'; export default [ { // ... rules: { 'import-fsd/no-denied-layers': ['error', { ignores: ['pages', 'widgets'] }], }, }, ];/* src/widgets/foo/bar/qwe.js */ // ✅ OK import foo from '@/pages/foo/bar'; // Ignored denied layer import foo from '@/widgets/foo/baz'; // Ignored denied slice
no-deprecated-layers
Prevents import from deprecated layers.
Previous versions of FSD have different layer names. Version FSD 2 provides new naming:
| Deprecated names | Recommended names |
| ------------------------------------------------------------------- | -------------------------------------- |
| core, init | app (apps) |
| processes (process), flows (flow), workflows (workflow) | app (apps), features (feature) |
| screens (screen), views (view), layouts (layout) | pages (page) |
| — | widgets (widget) |
| components (component), containers (container) | features (feature) |
| models (model) | entities (entity) |
| common, lib (libs) | shared |
If you are using FSD version 2.0.0 or higher, it's recommended to add this rule to your ESLint configuration to follow the new layer naming.
Example:
/* eslint.config.js */
import importFsdPlugin from 'eslint-plugin-import-fsd';
export default [
{
plugins: {
'import-fsd': importFsdPlugin,
},
settings: {
fsd: {
rootDir: './src',
aliases: {
'@/*': './src/*',
},
},
},
rules: {
'import-fsd/no-deprecated-layers': 'error',
},
},
];/* src/widgets/foo/bar/qwe.js */
// 📛 Error
import foo from '@/components/foo/bar';
import foo from '@/models/foo/bar';
import foo from '@/lib/foo/bar';
// ✅ OK
import foo from '@/features/foo/bar';
import foo from '@/entities/foo/bar';
import foo from '@/shared/foo/bar';Options
scope- defines the target scope of the rule check.Possible values:
import- the rule will only check importsfile- the rule will only check files to see if they are in a deprecated layerall(default) - the rule will check both imports and files
ignores- allows you to exclude imports from specific layers from being checked.The value must be an array of layer names.
Example:
/* eslint.config.js */ import importFsdPlugin from 'eslint-plugin-import-fsd'; export default [ { // ... rules: { 'import-fsd/no-deprecated-layers': ['error', { ignores: ['components', 'models'] }], }, }, ];/* src/widgets/foo/bar/qwe.js */ // ✅ OK import foo from '@/components/foo/bar'; // Ignored deprecated layer import foo from '@/models/foo/bar'; // Ignored deprecated layer
no-unknown-layers
Prevents import from unknown layers.
The plugin supports layer naming corresponding to FSD version 2 and lower. Some layer names support both plural and singular.
Available layer names:
| Deprecated names | Recommended names |
| ------------------------------------------------------------------- | -------------------------------------- |
| core, init | app (apps) |
| processes (process), flows (flow), workflows (workflow) | app (apps), features (feature) |
| screens (screen), views (view), layouts (layout) | pages (page) |
| — | widgets (widget) |
| components (component), containers (container) | features (feature) |
| models (model) | entities (entity) |
| common, lib (libs) | shared |
All other layer names are considered unknown.
Example:
/* eslint.config.js */
import importFsdPlugin from 'eslint-plugin-import-fsd';
export default [
{
plugins: {
'import-fsd': importFsdPlugin,
},
settings: {
fsd: {
rootDir: './src',
aliases: {
'@/*': './src/*',
},
},
},
rules: {
'import-fsd/no-unknown-layers': 'error',
},
},
];/* src/widgets/foo/bar/qwe.js */
// 📛 Error
import foo from '@/qwe/foo/bar';
import foo from '@/some-feature/foo/bar';
import foo from '@/cores/foo/bar';
// ✅ OK
import foo from '@/feature/foo/bar';
import foo from '@/features/foo/bar';
import foo from '@/entities/foo/bar';Options
scope- defines the target scope of the rule check.Possible values:
import- the rule will only check importsfile- the rule will only check files to see if they are in an unknown layerall(default) - the rule will check both imports and files
ignores- allows you to exclude imports from specific layers from being checked.The value must be an array of layer names.
Example:
/* eslint.config.js */ import importFsdPlugin from 'eslint-plugin-import-fsd'; export default [ { // ... rules: { 'import-fsd/no-unknown-layers': ['error', { ignores: ['qwe'] }], }, }, ];/* src/widgets/foo/bar/qwe.js */ // ✅ OK import foo from '@/qwe/foo/bar'; // Ignored unknown layer
🧩 Configs
recommended
Compatible with flat configuration format.
Contains recommended plugin rules configuration:
| Rule | Severity | Options |
| ---------------------- | -------- | ------- |
| no-denied-layers | error | — |
| no-deprecated-layers | warn | — |
| no-unknown-layers | error | — |
To include the recommended configuration in yours, you need to add it to the list of configurations in your ESLint configuration file:
/* eslint.config.js */
import importFsdPlugin from 'eslint-plugin-import-fsd';
export default [
importFsdPlugin.configs.recommended,
// ...
];