From 520febd5424a903d0a423952dbdd3f9675df0d1e Mon Sep 17 00:00:00 2001 From: networkException Date: Thu, 6 Jan 2022 01:57:22 +0100 Subject: [PATCH] Linter: Don't warn about build files not located in the src directory --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 9e9abb6..1b9904e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -59,7 +59,7 @@ "@typescript-eslint/semi": "warn", "import/first": "warn", "import/no-duplicates": "warn", - "import/no-unresolved": "warn", + "import/no-unresolved": "off", // The src directory is not used for compiled files "import/no-self-import": "warn", "import/extensions": [ "warn", "always" ], "import/order": [ "warn", { "newlines-between": "ignore", "alphabetize": { "order": "asc", "caseInsensitive": true } } ],