From 10f331271e45905dcb33c192234737fa23270217 Mon Sep 17 00:00:00 2001 From: Ralph Sennhauser Date: Fri, 13 Jun 2025 18:23:18 +0200 Subject: [PATCH] Explicitly disable eslint rule 'no-undef' They way the project is structured this isn't really usable for now but might change with move to ESM modules. See: https://eslint.org/docs/latest/rules/no-undef Ref: #8068 Signed-off-by: Ralph Sennhauser --- eslint.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 7f7e411b3e..91daffca16 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -41,7 +41,7 @@ const configEslintRecommended = { "no-redeclare": "warn", "no-self-assign": "warn", "no-shadow-restricted-names": "warn", - "no-undef": "off", + /* "no-undef": "warn", */ "no-unreachable": "warn", "no-unsafe-negation": ["warn", { "enforceForOrderingRelations": true }], "no-unused-labels": "warn",