From cfb5ee941ec7931070a58f37f4c8551c8f9be0b9 Mon Sep 17 00:00:00 2001 From: ehmicky Date: Mon, 25 Jan 2021 14:27:27 +0100 Subject: [PATCH] chore: disable `unicorn/no-array-for-each` ESLint rule --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 4168b8b8..4f9d2473 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -267,6 +267,7 @@ module.exports = { // Too strict 'unicorn/no-null': 0, 'unicorn/no-array-reduce': 0, + 'unicorn/no-array-for-each': 0, // This rule gives too many false positives 'unicorn/prevent-abbreviations': 0, // Conflicts with Prettier sometimes