From 910ebe469d2d0a2f7ebcd1e78728f0dae4fa0019 Mon Sep 17 00:00:00 2001 From: jdalton Date: Wed, 29 Jan 2025 22:02:13 -0600 Subject: [PATCH] Turn import-x/no-unresolved off --- eslint.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eslint.config.js b/eslint.config.js index f2cb0622..53de20dd 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -138,7 +138,8 @@ function getImportXFlatConfigs(isEsm) { // TypeScript compilation already ensures that named imports exist in // the referenced module. 'import-x/named': 'off', - 'import-x/no-named-as-default-member': 'off' + 'import-x/no-named-as-default-member': 'off', + 'import-x/no-unresolved': 'off' } } }