1.0.0 • Published 4 years ago

eslint-plugin-lcom v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

eslint-plugin-lcom

build status npm version

ESLint plugin to keep your JavaScript classes high cohesive by using LCOM (Lack of Cohesion of Methods) metric.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-lcom:

$ npm install eslint-plugin-lcom --save-dev

Usage

Add lcom to the plugins section of your .eslintrc configuration file. Then configure the rules you want to use under the rules section.

{
    "plugins": [
        "lcom"
    ],
    "rules": {
        "lcom/lcom4": "warn"
    }
}

Supported Rules

We currently support the only one rule of lcom4. It ensures a value of so called LCOM4 to be less than 2 in a class.