0.0.4 • Published 4 years ago

eslint-plugin-max-params-no-constructor v0.0.4

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

eslint-plugin-max-params-no-constructor

Detect functions with too many parameters without the constructor

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

or if you use yarn

$ yarn add eslint -D

Next, install eslint-plugin-max-params-no-constructor:

$ npm install eslint-plugin-max-params-no-constructor --save-dev

or

$ yarn add eslint-plugin-max-params-no-constructor -D

Usage

Add max-params-no-constructor to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
  "plugins": ["max-params-no-constructor"],
  "rules": {
    "max-params-no-constructor/max-params-no-constructor": ["error", 5]
  }
}