From eb6490e41d49f8bfff347dfa8e6421d9231af1f7 Mon Sep 17 00:00:00 2001 From: maxim Date: Sun, 26 Jan 2025 23:37:54 +0300 Subject: [PATCH] ~ disable `no-explicit-any` rule for `ts` in `eslint` config --- .eslintrc.cjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 595490e..090f8fe 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -12,5 +12,6 @@ module.exports = { plugins: ["react-refresh"], rules: { "react-refresh/only-export-components": "warn", - }, + "@typescript-eslint/no-explicit-any": "off" + } };