no-typed-doc-sections
Reject typed-signature repetition while preserving behavior that types cannot express.
Why
Parameter and return tags repeat typed signatures and can drift without adding runtime behavior or constraints.
Fix
Remove repeated parameter and return tags; retain documentation for behavior, failures, and external contracts.
Examples
/** @param userId the user identifier */export function fetchValue(userId: string): number { return 1;}/** Retries when the vendor returns 429. */export function fetchValue(id: string): number { return 1;}