From f515d7643b785e48477934bb5cc9e987db25edcc Mon Sep 17 00:00:00 2001
From: Mathias Wagner <germannewsmaker@gmail.com>
Date: Sun, 15 Jan 2023 03:21:16 +0100
Subject: [PATCH] Added the eslint rule "no explicit any" -> 0

---
 .eslintrc.json | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.eslintrc.json b/.eslintrc.json
index 415462d..352c7b9 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -5,6 +5,7 @@
     "parserOptions": { "project": ["./tsconfig.json"] },
     "plugins": ["@typescript-eslint"],
     "rules": {
+        "@typescript-eslint/no-explicit-any": 0,
         "@typescript-eslint/no-use-before-define": "warn",
         "@typescript-eslint/no-unused-vars": "warn"
     }