From 495edafa2d209efeb9143de9e24c1c9c8f921998 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Fri, 19 Jan 2024 17:47:00 +0100 Subject: [PATCH] Ignore explicit any and object injection --- .eslintrc.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index fe28e82..f8067fa 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -114,6 +114,8 @@ "newlines-between": "always" } ], - "unicorn/no-null": "off" + "unicorn/no-null": "off", + "security/detect-object-injection": "off", + "@typescript-eslint/no-explicit-any": "off" } }