/** * The domain linter's process-level project-discovery boundary. * * Oxlint roots config-file ignores at that config's directory. The SDK also * uses an internal fallback config outside the target project, so invocation * must enforce these patterns relative to its working directory as well. */ export const DOMAIN_OXLINT_IGNORE_PATTERNS = [ '**/dist/**', '**/node_modules/**', '**/coverage/**', '**/*.js', '**/*.mjs', '**/*.cjs', '**/*.gen.ts', '**/*.gen.tsx', ] as const