no-comment-cruft
Commented-out code, mechanical narration, decorative banner, or untracked work marker.
Why
Mechanical narration and dead code obscure the constraints and rationale that comments should preserve.
Fix
Delete the cruft. If author-controlled code is unclear without narration, clarify names, types, or structure; keep only concise comments for a hidden reason or constraint.
Examples
value = load()# return valuesave(value)value = load()# Keep this ordering because Clerk caches the first lookup.save(value)