From 8f0673c637a43d7f6de42f8407ab1431af5000e3 Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Wed, 1 Feb 2023 18:17:34 +0530 Subject: [PATCH] chore: ignore non-import loading --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 6ac5f37..a1cd467 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -12,6 +12,7 @@ module.exports = { plugins: ["@typescript-eslint"], rules: { "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-var-requires": "off", "@typescript-eslint/ban-types": "off", indent: ["error", 2], "linebreak-style": ["error", "unix"],