ts
TypeScript conventions and type-safe patterns.
$ Instalar
git clone https://github.com/lambdalisue/dotfiles /tmp/dotfiles && cp -r /tmp/dotfiles/home/claude/skills/ts ~/.claude/skills/dotfiles// tip: Run this command in your terminal to install the skill
SKILL.md
name: ts description: TypeScript conventions and type-safe patterns.
Conventions
- Types:
strict: true, type guards over assertions - Null Safety: Optional chaining (
?.), nullish coalescing (??) - Style:
interfacefor objects,typefor unions,import typefor types - Tools: oxlint for linting, Vitest for testing
Testing
describe("feature", () => {
it("behavior description", () => {
// AAA pattern, expect API
});
});
Repository

lambdalisue
Author
lambdalisue/dotfiles/home/claude/skills/ts
41
Stars
4
Forks
Updated5d ago
Added1w ago