typescript

A set of coding standards for TypeScript, a programming language that adds type checking to JavaScript.

In plain words
What is it for?
It guides safe handling of unknown, null, and undefined values, explicit function return types, access modifiers, and readonly fields.
Why use it?
It reduces common runtime errors and makes the code easier to understand 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/quinnjr/google-mcp/typescript
Clone the repo
git clone --depth 1 https://github.com/quinnjr/google-mcp

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,149 The whole file, excluding the scripts and references it only reads on demand.
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.00000 $0.01149
Opus 5 $0.00000 $0.00575
Sonnet 5 $0.00000 $0.00230
Haiku 4.5 $0.00000 $0.00115

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

Security

Grade A, and why

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 2d ago.

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/typescript.mdc · 208 lines

How it starts

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

TypeScript Best Practices

Follow these conventions when writing TypeScript code in this project.

Type Safety

  1. Avoid any - Use unknown for truly unknown types, then narrow with type guards

    // Bad
    function process(data: any) { ... }
    
    // Good
    function process(data: unknown) {
      if (typeof data === 'string') { ... }
    }
    
  2. Prefer explicit return types - Always declare return types on functions and methods

    // Bad
    function getData() { return { id: 1 }; }
    
    // Good
    function getData(): { id: number } { return { id: 1 }; }
    
  3. Use strict null checks - Handle null and undefined explicitly

    // Bad
    const name = user.name.toUpperCase();
    
    // Good
    const name = user.name?.toUpperCase() ?? 'Unknown';
    

Access Modifiers

All class members must have explicit access modifiers:

class MyService {
  private readonly client: Client;

  constructor(client: Client) {
    this.client = client;
  }

  public async getData(): Promise<Data> { ... }

  private validateInput(input: string): boolean { ... }
}
  • Use private for internal implementation details
  • Use public for API surface
  • Use protected for inheritance hierarchies
  • Use readonly for immutable properties

Naming Conventions

Type Convention Example
Classes PascalCase UserService
Interfaces PascalCase UserConfig
Type aliases PascalCase UserId
Enums PascalCase UserRole
Enum members UPPER_CASE or PascalCase ADMIN or Admin
Functions camelCase getUserById
Variables camelCase userCount
Constants UPPER_SNAKE_CASE MAX_RETRIES
Private members camelCase (no underscore prefix) private data

Type Imports

Use type-only imports when importing types:

// Bad
import { User, UserService } from './user';

// Good
import { type User, UserService } from './user';
// or
import type { User } from './user';
import { UserService } from './user';

Read the full file on GitHub · 208 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. 2d ago First seen · 208 lines · 0 tokens per session scan A a1906631f81f

Subscribe to this mod's changes

typescript is a cursor rule published in the GitHub repository quinnjr/google-mcp (11 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,149 tokens. 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-30.