New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-no-array-reduce

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-no-array-reduce - npm Package Compare versions

Comparing version

to
1.0.4

4

package.json
{
"name": "eslint-plugin-no-array-reduce",
"version": "1.0.3",
"version": "1.0.4",
"description": "ESLint rule to disallow Array.reduce() method.",

@@ -14,3 +14,3 @@ "main": "./dist/index.js",

"build": "tsup src/index.ts --no-splitting --minify",
"lint": "eslint --max-warnings 0 --ext .js,ts src/",
"lint": "eslint --max-warnings 0 'src/**/*.{js,ts}'",
"lint-staged-husky": "lint-staged",

@@ -17,0 +17,0 @@ "lint-prettier": "prettier --config .prettierrc -l './**/*.{ts,tsx,js,jsx,css,scss,json,md}'",

@@ -10,4 +10,9 @@ # eslint-plugin-no-array-reduce

To keep you code easy to read and maintainable do yourself and other developers a favour by disallowing `Array.reduce()` method.
`reduce()` in most cases can be written as `map()`, `filter()` or one of the `for()` loops which benefits in code readability and makes it easier to maintain for future developers.
There are many debates, discussions and other resources related to it:
- [Jake Archibald](https://twitter.com/jaffathecake/status/1213077702300852224)
- [Is reduce() bad](https://dev.to/jasterix/is-reduce-bad-2hhd)
- [Write more readable JavaScript](https://betterprogramming.pub/think-again-before-you-use-array-reduce-28f785b5aea9)
![](code.png)

@@ -52,9 +57,4 @@

Subjectively there are cases where you might want use it with `eslint-disable` but strongly recommended you write it differently.
Subjectively there are cases where you still might want to use `reduce()` with `eslint-disable`.
## Discussions, debates and other resources:
- [Jake Archibald](https://twitter.com/jaffathecake/status/1213077702300852224)
- [Ekrem Aktaş - Write more readable JavaScript](https://betterprogramming.pub/think-again-before-you-use-array-reduce-28f785b5aea9)
## Contributing

@@ -61,0 +61,0 @@