Skip to content

An ESLint plugin that enforces Feature-Sliced Design (FSD) methodology compliance in JavaScript projects. Includes rules to validate FSD architecture patterns and folder structures. Helps maintain code consistency and architectural standards across production environments. Simple npm installation and seamless integration with existing ESLint setups

Notifications You must be signed in to change notification settings

gwizxs/eslint-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eslint-plugin-gwizxs-plugin

plugin for my projects or production

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-gwizxs-plugin:

npm install eslint-plugin-gwizxs-plugin --save-dev

Usage

In your configuration file, import the plugin eslint-plugin-gwizxs-plugin and add gwizxs-plugin to the plugins key:

import gwizxs-plugin from "eslint-plugin-gwizxs-plugin";

export default [
    {
        plugins: {
            gwizxs-plugin
        }
    }
];

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

import gwizxs-plugin from "eslint-plugin-gwizxs-plugin";

export default [
    {
        plugins: {
            gwizxs-plugin
        },
        rules: {
            "gwizxs-plugin/rule-name": "warn"
        }
    }
];

Configurations

TODO: Run eslint-doc-generator to generate the configs list (or delete this section if no configs are offered).

Rules

TODO: Run eslint-doc-generator to generate the rules list.

About

An ESLint plugin that enforces Feature-Sliced Design (FSD) methodology compliance in JavaScript projects. Includes rules to validate FSD architecture patterns and folder structures. Helps maintain code consistency and architectural standards across production environments. Simple npm installation and seamless integration with existing ESLint setups

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors