review-guidelines

Installation
SKILL.md

Review Guidelines

Additional checks for this codebase:

Code Quality

  • Prefer type over interface for type definitions
  • Use arrow functions (const fn = () =>) over function declarations
  • Use #field (ES2022 private) instead of private field (TypeScript)
  • No any types — use unknown with type guards
  • No index.ts files (except plugin entry points) — use feature-named re-exports
  • Explicit .ts extensions on all local imports
  • Object params when >2 args: fn({ a, b, c }: { ... })
  • Zod namespace import: import * as z from 'zod'
  • Import directly from specific files, not through re-exports within a module

Testing

Installs
1
GitHub Stars
21
First Seen
May 28, 2026
review-guidelines — youdotcom-oss/dx-toolkit