From 1ca4dc08fd360cd7cf60b6bd9604a08bf9d2178a Mon Sep 17 00:00:00 2001 From: phosit Date: Wed, 2 Jul 2025 10:14:04 +0200 Subject: [PATCH] Enable eslint rule 'no-duplicate-imports' Enable rule 'no-duplicate-imports' [1] before we use modules heavily. There where no violations. [1] https://eslint.org/docs/latest/rules/no-duplicate-imports --- eslint.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/eslint.config.mjs b/eslint.config.mjs index f918e39067..210cb7b5f5 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -95,6 +95,7 @@ const configEslintExtra = { "default-case": "warn", "dot-notation": "warn", "no-caller": "warn", + "no-duplicate-imports": "warn", "no-else-return": "warn", "no-invalid-this": "warn", "no-label-var": "warn",