import { dirname } from 'path'; import { fileURLToPath } from 'url'; const __dirname = dirname(fileURLToPath(import.meta.url)); /** @type {import('eslint').Linter.Config[]} */ export default [ { ignores: ['.svelte-kit/', 'node_modules/', 'dist/', 'build/'] }, { files: ['**/*.js', '**/*.ts', '**/*.svelte'], languageOptions: { globals: { console: 'readonly', document: 'readonly', window: 'readonly', localStorage: 'readonly', fetch: 'readonly' } } } ];