* Remove unneeded code. * Remove more unused code. * Update knip.jsonc for ui-library. * Remove unneeded imports. Change the registry generation to only generate what's needed. * Cleanup the rehype middleware (it wasn't used). Clean up the example blocks generation. * Don't show the "show code" button in all dropzone examples.
19 lines
551 B
JSON
19 lines
551 B
JSON
{
|
|
"$schema": "https://unpkg.com/knip@5/schema-jsonc.json",
|
|
"exclude": ["types", "exports"],
|
|
"ignore": [
|
|
"examples/**",
|
|
"**/*.mdx",
|
|
// skip supabase functions
|
|
"supabase/functions/**",
|
|
"**/*.test.ts",
|
|
// ignore studio public folder
|
|
"apps/studio/public/**",
|
|
// ignore studio components, they're dynamically imported
|
|
"apps/studio/components/interfaces/Connect/content/**",
|
|
// ignore registry blocks in ui-library
|
|
"apps/ui-library/registry/default/**",
|
|
"apps/ui-library/contentlayer.config.js",
|
|
],
|
|
}
|