typescript

Typescript

15 community-ranked rules

15 rules
Move to Config2/10
2

Use TypeScript strict mode with `strict: true` in `tsconfig.json` — enables `strictNullChecks`, `noImplicitAny`, and other safety checks.

This belongs in tsconfig.json (`strict: true`), not in agent instructions.

Style Guide
TypeScript Defaults
Move to Config3/10
2

Write rules for yourself that prevent the same mistake

This belongs in automated testing or linting pipelines, not in agent instructions.

Agent Workflow
Self-Improvement Loop
Vague rule
1

For TypeScript: Only write Vitest tests when resolving a specific user issue or upon explicit request.

Testing
Vitest
Move to Config3/10
1

Use Google-style JSDoc docstrings for every public module, class, function, and method.

Documentation formatting should be enforced by static analysis tools like eslint-plugin-jsdoc rather than relying on AI instructions.

Helpful7/10
1

Use discriminated unions for state management over boolean flags.

Saving the agent time by explicitly enforcing a TypeScript best practice for state management that requires code pattern recognition across files.

Style Guide
TypeScript Defaults
Helpful5/10
1

Use plan mode for verification steps, not just building

Adds minimal value over the 0922494eee667d5d rule as it restates plan mode use without distinct actionable guidance.

Agent Workflow
Plan Mode Default
Vague ruleNear duplicate
Helpful6/10
1

Validate all external inputs at system boundaries. Trust nothing from users, APIs, or files.

Saves time by specifying all three untrusted input sources (users, APIs, files) as requiring validation at system boundaries.

Architecture
Production Readiness
Move to Config2/10
1

Avoid `any` — use `unknown` with type guards when the type is truly unknown.

Avoiding `any` belongs in an ESLint (@typescript-eslint/no-explicit-any) or Biome (typescript/noExplicitAny) rule instead.

Style Guide
TypeScript Defaults
1

Design a minimal, intuitive public API. Every exported symbol is a commitment — keep the surface area small.

Architecture
Library Architecture
1

Avoid N+1 query patterns — use batch loading, JOINs, or DataLoader patterns.

Performance
Performance Guidelines
Helpful7/10
1

Prefer small, focused functions under 30 lines. Extract helpers when logic grows.

Saving the agent time by explicitly stating a specific function length preference (under 30 lines) that requires inferring from code patterns otherwise.

Style Guide
TypeScript Defaults
Helpful7/10
1

Use `readonly` for arrays and properties that should not be mutated.

Saving the agent time on consistently applying TypeScript immutability best practices without needing to infer from scattered code examples.

Style Guide
TypeScript Defaults
1

Use `React.FC` sparingly — prefer explicit return types: `function Card({ title }: Props): React.ReactElement`. Use generic components: `function List<T>({ items, renderItem }: ListProps<T>)`.

framework
React Defaults
1

If a function can fail, return a discriminated union (`{ ok: true; data: T } | { ok: false; error: E }`) instead of throwing — callers are forced to handle both cases.

Style Guide
TypeScript Defaults
1

Write E2E tests for critical user journeys: signup, login, checkout, core workflows.

Testing
E2E Testing

Have a rule that helps your AI coding agent? Share it with the community.

Suggest a Rule