From 57e2de8fb64efad368f0a57627da370730d23666 Mon Sep 17 00:00:00 2001 From: Kislay Date: Mon, 3 Jun 2024 10:32:51 +0530 Subject: [PATCH] typescript: disable rule `noUnusedParameters` --- backend/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tsconfig.json b/backend/tsconfig.json index 7444df7..bc6b9d8 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -92,7 +92,7 @@ "useUnknownInCatchVariables": true /* Default catch clause variables as 'unknown' instead of 'any'. */, "alwaysStrict": true /* Ensure 'use strict' is always emitted. */, "noUnusedLocals": true /* Enable error reporting when local variables aren't read. */, - "noUnusedParameters": true /* Raise an error when a function parameter isn't read. */, + // "noUnusedParameters": true /* Raise an error when a function parameter isn't read. */, // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ "noFallthroughCasesInSwitch": true /* Enable error reporting for fallthrough cases in switch statements. */