typescript-style

Installation
SKILL.md

TypeScript Code Guidelines

Naming Conventions

  • Files and directories: kebab-case.ts.
  • Classes, interfaces, types, enums: PascalCase.
  • Functions, variables, methods: camelCase.
  • Constants: UPPER_SNAKE_CASE.
  • Booleans: prefix with is, has.
  • Functions: start with, or consist of, a verb (get, resolve, create).
  • Use simple variable and function names const user = getUser().

Type Safety

Installs
8
First Seen
Feb 22, 2026
typescript-style — hqarroum/writing-typescript