AI agents that understand TypeScript's type system at a deep level.
Catch type errors, validate generics, and enforce strict mode patterns.
Find issues that TypeScript compiler misses but cause runtime errors.
Detect security vulnerabilities in full-stack TypeScript applications.
Identify type-level performance issues and build optimization problems.
Enforce your team's TypeScript standards. Ban unsafe patterns, require strict types, ensure consistency.
rules:
- id: ts_no_unsafe_any
agent: bugs
title: No unsafe type assertions
description: Avoid 'as any' and prefer
type guards or unknown
importance: 9
match:
file_glob:
- '**/*.ts'
- '**/*.tsx'
checklist:
- No 'as any' assertions
- Use type guards for narrowing
- Prefer unknown over any
tags:
- typescript
- type-safety
- strict-mode