eslint-plugin-lcom

1.0.0 • Public • Published

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.

Package Sidebar

Install

npm i eslint-plugin-lcom

Weekly Downloads

44

Version

1.0.0

License

MIT

Unpacked Size

7.54 kB

Total Files

7

Last publish

Collaborators

  • fuji_haruka