From 8f74073bd775015c1a1f98b2047ff540262635f0 Mon Sep 17 00:00:00 2001 From: Gus Narea Date: Thu, 31 Oct 2024 17:43:43 +0000 Subject: [PATCH] fix: Disable `array-func/prefer-array-from` and `convert-array-copy-to-slice` --- base.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/base.js b/base.js index 692c90f..deb394f 100644 --- a/base.js +++ b/base.js @@ -328,6 +328,8 @@ export default [ }, ], + 'array-func/prefer-array-from': 'off', + 'perfectionist/sort-classes': [ 'error', { @@ -369,6 +371,7 @@ export default [ 'conditions/apply-consistent-blocks': 'off', 'conditions/remove-zero': 'off', 'conditions/remove-zero-conditions': 'off', + 'convert-array-copy-to-slice': 'off', 'new/remove-useless': 'off', 'nodejs/declare': 'off', 'remove-useless-constructor': 'off',