From 7633b4e353e279ff9f60cafc8d8d4e418293a42c Mon Sep 17 00:00:00 2001 From: Greenlamp Date: Wed, 22 May 2024 01:18:08 +0200 Subject: [PATCH] removed config for unused export --- .eslintrc.json | 1 - 1 file changed, 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 41c0124a51a..dc0d35b3ded 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -16,7 +16,6 @@ "args": "none", // Allows unused function parameters. Useful for functions with specific signatures where not all parameters are always used. "ignoreRestSiblings": true // Allows unused variables that are part of a rest property in object destructuring. Useful for excluding certain properties from an object while using the rest. }], - "import/no-unused-modules": ["error", { "missingExports": true, "unusedExports": false }], // Only checks for unused imports, not unused exports "eol-last": ["error", "always"], // Enforces at least one newline at the end of files "camelcase": ["error", { "properties": "always" }] // Enforces camelCase naming convention for properties }