From 2f54a2f3c8be594027c17a5ded2546014b2dba97 Mon Sep 17 00:00:00 2001 From: Rebecca Stevens Date: Thu, 5 Oct 2023 23:43:57 +1300 Subject: [PATCH] fix: turn off prefer-destructuring when using typescript --- src/configs/typescript.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/configs/typescript.ts b/src/configs/typescript.ts index b938d02b..05d4d5bf 100644 --- a/src/configs/typescript.ts +++ b/src/configs/typescript.ts @@ -23,6 +23,7 @@ const baseConfig: Linter.Config = { "no-unused-vars": "off", "no-use-before-define": "off", "object-curly-spacing": "off", + "prefer-destructuring": "off", "space-infix-ops": "off", },