From ddc874d6f57738f9ef7ed2cfde20d671bdf30143 Mon Sep 17 00:00:00 2001 From: Tim Ittermann Date: Fri, 2 Aug 2024 15:34:21 +0200 Subject: [PATCH] chore: Update ESLint configuration to ignore non-null assertions --- .eslintrc.json | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 4cc0a95..6b27ab4 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -3,9 +3,15 @@ "parserOptions": { "project": "./tsconfig.json" }, - "plugins": ["@typescript-eslint"], - "extends": ["next/core-web-vitals", "plugin:@typescript-eslint/recommended"], + "plugins": [ + "@typescript-eslint" + ], + "extends": [ + "next/core-web-vitals", + "plugin:@typescript-eslint/recommended" + ], "rules": { - "@typescript-eslint/consistent-type-imports": "warn" + "@typescript-eslint/consistent-type-imports": "warn", + "@typescript-eslint/no-non-null-assertion": "ignore" } -} +} \ No newline at end of file