From 68a314703fce68eabf3c128371f654a18290cdee Mon Sep 17 00:00:00 2001 From: Kane Wang Date: Mon, 11 Dec 2023 13:14:57 +0800 Subject: [PATCH] =?UTF-8?q?typescript=E6=9B=B4=E6=96=B0=E5=90=8Eunsafe?= =?UTF-8?q?=E8=B5=8B=E5=80=BC=E9=97=AE=E9=A2=98=E6=9C=AA=E8=A7=A3=E5=86=B3?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/web/task_schedule/.eslintrc.cjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/web/task_schedule/.eslintrc.cjs b/code/web/task_schedule/.eslintrc.cjs index ba59529..98dd627 100644 --- a/code/web/task_schedule/.eslintrc.cjs +++ b/code/web/task_schedule/.eslintrc.cjs @@ -113,6 +113,7 @@ module.exports = { // typescript "@typescript-eslint/indent": ["warn", 4,], "@typescript-eslint/no-explicit-any": "warn", + "@typescript-eslint/no-unsafe-argument": "warn", "@typescript-eslint/no-extra-semi": "off", "@typescript-eslint/no-inferrable-types": "off", "@typescript-eslint/no-unused-vars": "warn", @@ -159,6 +160,7 @@ module.exports = { "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off", "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-unsafe-argument": "warn", "@typescript-eslint/indent": ["error", 4,], "@typescript-eslint/no-extra-semi": "off", "@typescript-eslint/no-inferrable-types": "off",