eslint-plugin-no-array-reduce
Advanced tools
Comparing version
{ | ||
"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) | ||
 | ||
@@ -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 @@ |
5723
1.71%