no-type-member-comment-wall
Flag an object type whose member comments mostly re-spell the members' own names and types.
Why
Repetitive member comments add scanning cost while hiding the comments that describe facts absent from the type.
Fix
Delete comments that restate member names or types and keep comments that add constraints or behavior.
Examples
interface Credentials { // Database host. host?: string; // Database host port. port?: number; // Database username. username?: string; // Database password. password?: string;}interface Credentials { host: string; port: number; username: string;}