Files
agentic-dev/.fallowrc.json
Danijel Martinek 1483a45406 docs(product): commit design references under docs/product/reference/
Copy the founder's design handoff bundle (.proto/design/) into
docs/product/reference/ byte-for-byte so dispatch agents running in git
worktrees can read the HTML prototypes, veect-codebase/ prototype,
upload PNGs, and remaining bundle files (ADR-029: reference only, never
vendored into packages/). Ignore-list entries so whole-codebase auditors
and formatters skip reference material: .prettierignore (byte
preservation through lint-staged), .fallowrc.json ignorePatterns, root
ESLint ignores, and the coverage:diff allowlist in
scripts/coverage/diff.mjs (+ unit test). .DS_Store files skipped.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016j8z4VHjedXDTjEDNg7qHK
2026-07-12 14:09:30 +02:00

66 lines
1.6 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/fallow-rs/fallow/main/schema.json",
"ignorePatterns": [
"**/node_modules/**",
"**/dist/**",
"**/.next/**",
"**/.turbo/**",
"**/storybook-static/**",
"**/__snapshots__/**",
"**/turbo/generators/templates/**",
"**/*.generated.ts",
"**/*.d.ts",
"docs/product/reference/**"
],
"dynamicallyLoaded": [
"packages/**/__factories__/**",
"packages/**/__seeds__/**",
"apps/**/instrumentation.ts",
"apps/**/instrumentation-client.ts",
"apps/storybook/test-runner.config.ts",
"scripts/**/*.mjs"
],
"publicPackages": ["@repo/core-*"],
"ignoreDependencies": [
"@payloadcms/ui",
"sass",
"sharp",
"@tanstack/react-query",
"@trpc/server",
"superjson",
"@repo/blog",
"@repo/core-api",
"@repo/marketing-pages",
"@repo/navigation",
"@repo/core-testing",
"http-server",
"wait-on",
"@opentelemetry/api-logs",
"@typescript-eslint/eslint-plugin",
"@testing-library/user-event",
"zod",
"@eslint/js",
"@opentelemetry/sdk-node",
"@sentry/opentelemetry",
"@stryker-mutator/core",
"@stryker-mutator/vitest-runner"
],
"ignoreExportsUsedInFile": true,
"rules": {
"unused-files": "warn",
"unused-exports": "warn",
"unused-types": "off",
"unused-class-members": "warn",
"unused-dependencies": "warn",
"unused-dev-dependencies": "warn",
"unlisted-dependencies": "warn",
"circular-dependencies": "error",
"duplicate-code": "warn"
},
"health": {
"maxCyclomatic": 25,
"maxCognitive": 30,
"maxCrap": 400
}
}