mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 02:51:46 +00:00
23 lines
586 B
JSON
23 lines
586 B
JSON
{
|
|
"$schema": "https://unpkg.com/knip@6/schema-jsonc.json",
|
|
// Exclude shared UI primitives from dead code reporting while we focus the
|
|
// cleanup on feature and domain code first.
|
|
"ignore": [
|
|
"src/shared/components/ui/**"
|
|
],
|
|
// Runtime asset referenced by string in the PDF viewer.
|
|
"ignoreFiles": [
|
|
"public/pdf.worker.min.mjs",
|
|
"setup.mjs"
|
|
],
|
|
// PostCSS is inferred from the config file, but the project only depends on
|
|
// the Tailwind PostCSS plugin directly.
|
|
"ignoreDependencies": [
|
|
"postcss"
|
|
],
|
|
"next": true,
|
|
"postcss": true,
|
|
"biome": true,
|
|
"drizzle": true
|
|
}
|