Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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.1
  • npm
  • Socket score

Version published
Weekly downloads
9.3K
increased by11.34%
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.

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-no-param-reassign-allow-reduce:

$ npm install eslint-plugin-no-param-reassign-allow-reduce --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-no-param-reassign-allow-reduce globally.

Usage

Add no-param-reassign-allow-reduce to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

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

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

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

Keywords

FAQs

Package last updated on 23 Jan 2018

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc