From 70f9dd50b7c6be1d211144d9b773f51cde279416 Mon Sep 17 00:00:00 2001 From: Ludy Date: Tue, 7 Oct 2025 20:18:51 +0200 Subject: [PATCH] Clean up ESLint config by removing glob patterns Removed unused glob patterns for source and node files. --- frontend/eslint.config.mjs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/frontend/eslint.config.mjs b/frontend/eslint.config.mjs index 2ae2338ed..80bdfd527 100644 --- a/frontend/eslint.config.mjs +++ b/frontend/eslint.config.mjs @@ -50,14 +50,6 @@ const nodeGlobs = [ const __dirname = fileURLToPath(new URL('./', import.meta.url)); -const srcGlobs = [ - 'src/**/*.{js,mjs,jsx,ts,tsx}', -]; -const nodeGlobs = [ - 'scripts/**/*.{js,ts,mjs}', - '*.config.{js,ts,mjs}', -]; - export default defineConfig( { ignores: ignorePatterns },