Fix Knip Unused Exports Fix knip "Unused exports" violations. There are several categories of violation, each with a different fix strategy. When to Use - reports "Unused exports" When NOT to Use - The export is consumed by non-test production code in another file -- something else is wrong Workflow 1. Identify Violations Output looks like: 2. Classify Each Violation For each flagged export, grep the entire repository (not just the package): Determine which category it falls into: | Category | Callers | Fix | |----------|---------|-----| | Test-only export | Used in same file + test files onl…