webui: kill eslint's no-explicit-any warning dead dead dead
A sign that it maybe it's not a good fit for us
is the fact that it was sprinkled around our codebase
as prolifically as blinding snow in an Antarctic blizzard.
Co-Authored-By: sketch <hello@sketch.dev>
Change-ID: s79f40917a73a3320k
diff --git a/webui/eslint.config.mjs b/webui/eslint.config.mjs
index 3bde6c1..3298f7c 100644
--- a/webui/eslint.config.mjs
+++ b/webui/eslint.config.mjs
@@ -52,6 +52,8 @@
"error",
{ argsIgnorePattern: "^_", varsIgnorePattern: "^_" },
],
+ // Allow explicit any - often needed for interfacing with dynamic data
+ "@typescript-eslint/no-explicit-any": "off",
},
},
);