Code Entropy Meter is a lightweight VS Code extension that estimates how structurally complex the active file feels. It turns a few fast, heuristic signals into an Entropy Score from 0 to 100.
What Entropy Means
Entropy here is a rough indicator of how tangled a file might be. High scores usually point to deeper nesting, long functions, lots of TODOs, and other small signals of complexity. It is not a linter and it never changes your code.
Metrics Used
Total number of lines
Lines longer than the configured max length
TODO / FIXME comments
console.log calls
any type usage
Maximum nesting depth (brace tracking)
Average function length (function keyword detection)