You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

eslint-plugin-no-param-reassign-allow-reduce

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-no-param-reassign-allow-reduce

A copy of the 'no-param-reassign' rule but with allowances made for array.reduce()

1.0.2
latest
npmnpm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-no-param-reassign-allow-reduce

The rule no-param-reassign is a worthwhile rule to enable but array.reduce() requires you to break this rule. Use this rule instead which allows you to enable the rule but does not throw errors when you do this within the contex of the array.reduce function.

npm Package

Installation

$ npm i eslint-plugin-no-param-reassign-allow-reduce

Usage

Add no-param-reassign-allow-reduce to the plugins section of your .eslintrc configuration file and add the rules to the rule section.

{
  "plugins": ["no-param-reassign-allow-reduce"]
}

...

{
  "rules": {
    "no-param-reassign-allow-reduce/allow-reduce": 2,
    "no-param-reassign-allow-reduce/no-reduce-identifiers": 2
  }
}

Keywords

eslint

FAQs

Package last updated on 19 May 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