Files
q-tube/.fallowrc.json
2026-06-04 11:03:25 -06:00

43 lines
1.3 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/fallow-rs/fallow/main/schema.json",
"entry": [
"src/index.{ts,tsx,js,jsx}",
"src/main.{ts,tsx,js,jsx}"
],
"duplicates": {
// Hide pair-only clones; focus on widespread copy-paste
// worth refactoring. Lower to 2 to report every duplicate pair.
"minOccurrences": 3
// Common additions (uncomment to enable):
// "ignore": [
// "**/lib/**", // for repos that publish transpiled output to lib/
// "**/legacy/**", // for repos with legacy-build artifacts
// "**/__generated__/**", // Relay, GraphQL Code Generator
// "**/generated/**" // OpenAPI, Protobuf codegen
// ]
},
"rules": {},
"ignoreExports": [
{
"file": "src/components/Publish/PublishAndEditPlaylist/Upload-styles.tsx",
"exports": ["*"]
},
{
"file": "src/components/Publish/PublishVideo/PublishVideo-styles.tsx",
"exports": ["*"]
},
{
"file": "src/pages/ContentPages/PlaylistContent/PlaylistContent-styles.tsx",
"exports": ["*"]
},
{
"file": "src/pages/ContentPages/VideoContent/VideoContent-styles.tsx",
"exports": ["*"]
},
{
"file": "src/components/Publish/MultiplePublish/MultiplePublishAll.tsx",
"exports": ["*"]
}
]
}