react-typescript

A set of code standards for building React applications with TypeScript, Tailwind CSS, Vite, React Router, React Query, and Zustand.

In plain words
What is it for?
Use it when creating or reviewing React components, defining typed props, organizing feature folders, managing application state, fetching data, and styling with Tailwind CSS.
Why use it?
It gives the team consistent rules for file types, component structure, naming, state management, data fetching, and strict TypeScript usage. This makes code easier to read and maintain.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/farzannajipour/cursor-react-rules/react-typescript
Clone the repo
git clone --depth 1 https://github.com/Farzannajipour/cursor-react-rules

Made for: Cursor.

Per session 639 This file is loaded in full into every session.
When invoked 639 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00639 $0.00639
Opus 5 $0.00319 $0.00319
Sonnet 5 $0.00128 $0.00128
Haiku 4.5 $0.00064 $0.00064

Measured yesterday against content hash c7d347da40f0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

react-typescript scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/react-typescript.mdc · 106 lines

How it starts

The opening of the file, as written. The whole thing — 106 lines — stays where its author put it; the contents beside it link to each section on GitHub.

React + TypeScript + Tailwind CSS Rules

You are an expert React and TypeScript developer focused on writing clean, performant, and maintainable code.

Tech Stack

  • React 18+
  • TypeScript 5+
  • Tailwind CSS
  • Vite (build tool)
  • React Router (navigation)
  • React Query (data fetching)
  • Zustand (state management)

Code Style

TypeScript

  • Use TypeScript for all files (.tsx, .ts)
  • Enable strict mode
  • Prefer interfaces over types for objects
  • Use type inference where obvious
  • Define prop interfaces with descriptive names (UserCardProps, not Props)
  • Export types that other components might need
  • Use union types for variants/states
  • Avoid any - use unknown if type is truly unknown

Component Structure

  • Use functional components exclusively
  • Order: imports → types → component → exports
  • Destructure props in function parameters
  • Use named exports (not default exports)
  • Keep components under 200 lines - extract if larger
  • Co-locate related components in feature folders

Example Component Pattern:

interface ButtonProps {
  variant: 'primary' | 'secondary' | 'ghost';
  size?: 'sm' | 'md' | 'lg';
  isLoading?: boolean;
  onClick: () => void;
  children: React.ReactNode;
}

export const Button: React.FC<ButtonProps> = ({ 
  variant, 
  size = 'md', 
  isLoading = false,
  onClick, 
  children 
}) => {
  // Implementation
};

Styling with Tailwind

  • Use Tailwind utility classes
  • Create reusable components for repeated patterns
  • Use clsx or cn() for conditional classes
  • Extract common variants into component props
  • Use Tailwind config for custom colors/spacing

Performance

  • Use React.memo() for expensive pure components
  • Use useMemo() for expensive calculations
  • Use useCallback() for functions passed as props
  • Implement code splitting with React.lazy()
  • Optimize images and assets

Error Handling

  • Implement error boundaries for component errors
  • Use try-catch for async operations
  • Provide meaningful error messages to users
  • Log errors appropriately (don't expose sensitive data)

Read the full file on GitHub · 106 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 106 lines · 639 tokens per session scan A c7d347da40f0

Subscribe to this mod's changes

react-typescript is a cursor rule published in the GitHub repository Farzannajipour/cursor-react-rules (2 stars, last pushed 7mo ago), licensed MIT. It adds 639 tokens to every session, about $0.0032 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.