.agent/skills/fix/references/CodeComments.md
Rules for formatting and reducing TypeScript code comments in this repository.
Apply JSDoc ONLY to public exported functions, interfaces, or classes.
Syntax format:
/**
* Concise single-sentence description.
* @param name Description without type.
* @returns Description without type.
*/
Omit types from JSDoc tags (e.g., use @param id, NOT @param {number} id).
//) ONLY for unexpected business logic or workarounds.map() or reduce() works).