setup

A project rule for configuring ESLint, a tool that finds code-quality and style problems, in React projects. It specifies import ordering, React and TypeScript checks, and consistent formatting.

In plain words
What is it for?
Use it when setting up ESLint for a React and TypeScript codebase, especially when imports must be grouped and sorted.
Why use it?
It gives the project a defined linting setup so common code issues and inconsistent imports are caught automatically.

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/maxvelocitylabs/react-typescript-scss-boilerplate/setup
Clone the repo
git clone --depth 1 https://github.com/MaxVelocityLabs/React-typescript-scss-boilerplate

Made for: Cursor.

Per session 3,930 This file is loaded in full into every session.
When invoked 3,930 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.03930 $0.03930
Opus 5 $0.01965 $0.01965
Sonnet 5 $0.00786 $0.00786
Haiku 4.5 $0.00393 $0.00393

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

Security

Grade A, and why

setup 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/setup.mdc · 484 lines

How it starts

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

Project Setup Rules

ESLint Configuration

Always setup ESLint with proper JSON configuration including import sorting and grouping rules for React projects.

Required ESLint Rules:

  • Import sorting and grouping (external, internal, relative)
  • React-specific linting rules
  • TypeScript support
  • Consistent code formatting

ESLint Configuration Example:

{
  "extends": [
    "eslint:recommended",
    "@typescript-eslint/recommended",
    "plugin:react/recommended",
    "plugin:react-hooks/recommended",
    "plugin:import/recommended",
    "plugin:import/typescript"
  ],
  "plugins": [
    "react",
    "react-hooks",
    "@typescript-eslint",
    "import"
  ],
  "rules": {
    "import/order": [
      "error",
      {
        "groups": [
          "builtin",
          "external",
          "internal",
          "parent",
          "sibling",
          "index"
        ],
        "newlines-between": "always",
        "alphabetize": {
          "order": "asc",
          "caseInsensitive": true
        },
        "pathGroups": [
          {
            "pattern": "react",
            "group": "external",
            "position": "before"
          },
          {
            "pattern": "@/**",
            "group": "internal"
          }
        ],
        "pathGroupsExcludedImportTypes": ["react"]
      }
    ],
    "import/no-unresolved": "error",
    "import/no-duplicates": "error",
    "react/react-in-jsx-scope": "off",
    "react/prop-types": "off",
    "@typescript-eslint/no-unused-vars": "error",
    "@typescript-eslint/explicit-function-return-type": "off",
    "@typescript-eslint/explicit-module-boundary-types": "off"
  },
  "settings": {
    "react": {
      "version": "detect"
    },
    "import/resolver": {
      "typescript": {
        "alwaysTryTypes": true
      }
    }
  }
}

Import Order Examples:

  • ❌ Mixed imports: import { useState } from 'react'; import { Button } from './Button'; import axios from 'axios';
  • ✅ Grouped imports:
// External libraries
import axios from 'axios';
import React, { useState } from 'react';

// Internal modules
import { Button } from '@components/Button';
import { API_SERVICE } from '@services/api';

// Relative imports
import './Component.styles.scss';

Read the full file on GitHub · 484 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 · 484 lines · 3,930 tokens per session scan A 4c63d65f318f

Subscribe to this mod's changes

setup is a cursor rule published in the GitHub repository MaxVelocityLabs/React-typescript-scss-boilerplate (1 stars, last pushed 10mo ago), licensed MIT. It adds 3,930 tokens to every session, about $0.0197 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.