typescript-clean-code

Installation
SKILL.md

Clean TypeScript: Complete Reference

Enforces all Clean Code principles from Robert C. Martin's Chapter 17, adapted for TypeScript.

Comments (C1-C5)

  • C1: No metadata in comments (use Git)
  • C2: Delete obsolete comments immediately
  • C3: No redundant comments
  • C4: Write comments well if you must
  • C5: Never commit commented-out code

Environment (E1-E2)

  • E1: One command to build (npm run build)
  • E2: One command to test (npm test)

Functions (F1-F4)

  • F1: Maximum 3 arguments (use parameter objects/interfaces for more)
  • F2: No output arguments (return values)
  • F3: No flag arguments (split functions)
Related skills
Installs
3
GitHub Stars
49
First Seen
10 days ago