TypeScript · maintainability
no-type-member-comment-wall
eslint:no-type-member-comment-wall Flag an object type whose member comments mostly re-spell the members' own names and types.
- Default
- error
- Fix
- none
- Languages
- typescript
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.
Before / after
Executed by this rule’s unit tests.
Before
Do not restate member names and types
interface Credentials {
// Database host.
host?: string;
// Database host port.
port?: number;
// Database username.
username?: string;
// Database password.
password?: string;
} After
Let clear member names and types stand alone
interface Credentials { host: string; port: number; username: string; } Limits
- Only interface and type-literal bodies meeting the configured comment-count and restatement-ratio thresholds are reported.
Message IDs
commentWall