no-declaration-comment-wall
Flag an enum body or class body whose member comments mostly re-spell the members' own names.
Why
A dense block of repetitive member comments obscures the few comments that add information and drifts with renamed members.
Fix
Delete comments that restate member names and retain comments that explain constraints, lifecycle, or behavior.
Examples
enum Status { /** The pending status. */ Pending = "pending", /** The finished status. */ Finished = "finished", /** The failed status. */ Failed = "failed",}enum Status { Pending = "pending", Done = "done", Failed = "failed",}