New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-feature-modules

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-feature-modules

Plugin for eslint rules that apply to feature modules directory structure

1.0.2
latest
npm
Version published
Maintainers
1
Created
Source

eslint-plugin-feature-modules

Plugin for eslint rules that apply to feature modules directory structure

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-feature-modules:

$ npm install eslint-plugin-feature-modules --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-feature-modules globally.

Usage

Add feature-modules to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "feature-modules"
    ]
}

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

{
    "rules": {
        "feature-modules/no-deep-module-require": {"moduleFolderName": "modules"}
    }
}

Supported Rules

  • no-deep-module-require - disallow importing other module files that are not exported through module's index.js file. See README of rule

Keywords

eslint

FAQs

Package last updated on 28 Aug 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts