From be8d014cbc630de9d2c34ec71d885bd21ebc5915 Mon Sep 17 00:00:00 2001 From: Sasial <44125644+sasial-dev@users.noreply.github.com> Date: Sun, 17 Nov 2024 17:36:34 +1000 Subject: [PATCH] fix: null assertions recursion --- src/configs/typescript.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/configs/typescript.ts b/src/configs/typescript.ts index c004d805..aa1cdfbf 100644 --- a/src/configs/typescript.ts +++ b/src/configs/typescript.ts @@ -76,7 +76,6 @@ export async function typescript( "ts/no-unsafe-call": "error", "ts/no-unsafe-member-access": "error", "ts/no-unsafe-return": "error", - "ts/non-nullable-type-assertion-style": "error", "ts/prefer-destructuring": "error", "ts/prefer-find": "error", "ts/prefer-includes": "error", @@ -238,7 +237,6 @@ export async function typescript( "ts/max-params": ["error", { max: 4 }], "ts/method-signature-style": "off", "ts/no-array-constructor": "off", - "ts/no-confusing-non-null-assertion": "error", "ts/no-dupe-class-members": "error", "ts/no-dynamic-delete": "off", "ts/no-empty-function": "error",