Skip to content

Commit 62cf687

Browse files
Fill in Why DeadCode section with concrete pain points
- Explain what dead code costs (bundle bloat, slow CI, confused devs) - Contrast with linters (they catch variables, not orphaned components/routes/CSS) - Add CI prevention angle
1 parent 50f55f7 commit 62cf687

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
[![LibHunt](https://img.shields.io/badge/LibHunt-%E2%87%92-blue?logo=codeigniter)](https://www.libhunt.com/r/Coding-Dev-Tools/deadcode)
1616
[![Awesome Python](https://img.shields.io/badge/Awesome_Python-%E2%87%92-blue?logo=python)](https://github.com/uhub/awesome-python)
1717

18-
**Why DeadCode?**
18+
**Why DeadCode?** Dead code silently bloats your bundle, slows your CI, and confuses new developers. Linters catch unused variables — but they miss orphaned React components, CSS classes nobody references, API routes with zero traffic, and exported functions called from nowhere. DeadCode finds all of it. It maps your entire dependency graph, marks what's reachable, and flags everything else for removal. Run it in CI to prevent dead code from shipping in the first place.
1919

2020
## Quick Start
2121

0 commit comments

Comments
 (0)