import type { Linter } from 'eslint'; export async function ignores(): Promise { return [ { ignores: [ '**/node_modules', '**/dist', '**/.husky', '**/Dockerfile', '**/package-lock.json', '**/yarn.lock', '**/pnpm-lock.yaml', '**/bun.lockb', '**/output', '**/coverage', '**/temp', '**/.temp', '**/tmp', '**/.tmp', '**/.history', '**/.vitepress/cache', '**/.nuxt', '**/.next', '**/.vercel', '**/.changeset', '**/.idea', '**/.cache', '**/.output', '**/.vite-inspect', '**/CHANGELOG*.md', '**/*.min.*', '**/LICENSE*', '**/__snapshots__', '**/auto-import?(s).d.ts', '**/components.d.ts', '**/vite.config.mts.*', '**/*.sh', '**/*.ttf', '**/*.woff', ], }, ]; }