📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

eslint-plugin-better-max-params

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-better-max-params

Set a max param number for your constructors, functions, methods etc.

0.0.1
latest
npm
Version published
Maintainers
1
Created
Source

eslint-plugin-better-max-params

Set a max param number for your constructors, functions, methods etc.

Installation

You'll first need to install ESLint:

npm i eslint --save-dev

Next, install eslint-plugin-better-max-params:

npm install eslint-plugin-better-max-params --save-dev

Usage

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

{
    "plugins": [
        "better-max-params"
    ]
}

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

{
    "rules": {
        "better-max-params/better-max-params": {
            "func": 5,
            "constructor": 10
        }
    }
}

func and constructor are optional. If you don't provide them, no limit will be set.

Supported Rules

  • better-max-params

Keywords

eslint

FAQs

Package last updated on 02 Apr 2022

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