Clean up ESLint config by removing glob patterns

Removed unused glob patterns for source and node files.
This commit is contained in:
Ludy 2025-10-07 20:18:51 +02:00 committed by GitHub
parent c6f54a2a4c
commit 70f9dd50b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 },