1---2name: eslint3description: Use ESLint in .NET repositories that ship JavaScript, TypeScript, React, or other Node-based frontend assets. USE FOR: the repo has package.json, eslint.config.*, .eslintrc*, tsconfig.json, or JS/TS/React frontend files; the user asks for JavaScript or TypeScript linting, React rule. DO NOT USE FOR: CSS ownership by itself; route that to stylelint; HTML-only checks on static output; route that to htmlhint. INVOKES: inspect the repository context, edit targeted files, and run relevant build, test, lint, or validation commands when changes are made.4---56# ESLint for Frontend Assets in .NET Repositories78## Trigger On910- the repo has `package.json`, `eslint.config.*`, `.eslintrc*`, `tsconfig.json`, or JS/TS/React frontend files11- the user asks for JavaScript or TypeScript linting, React rule enforcement, import hygiene, or unsafe frontend patterns12- CI should fail on frontend lint findings instead of relying on editor-only feedback1314## Do Not Use For1516- CSS ownership by itself; route that to `stylelint`17- HTML-only checks on static output; route that to `htmlhint`18- repos that intentionally standardized on Biome as the only JS or TS formatter-linter, unless migration or comparison is explicitly requested1920## Inputs2122- the nearest `AGENTS.md`23- `package.json`24- `eslint.config.*` or `.eslintrc*`25- `tsconfig.json` when TypeScript or type-aware rules are involved2627## Workflow28291. Detect ownership first:30 - existing ESLint config31 - package manager and workspace layout32 - framework packages such as React, Next.js, Vue, or plain TypeScript332. Keep ESLint as the semantic lint owner for JS and TS files when the repo needs rich plugin ecosystems or framework-specific rules.343. Prefer checked-in local devDependencies over global installs so CI and local runs match.354. Add narrow scripts to `package.json`, for example:36 - `lint`: `eslint .`37 - `lint:fix`: `eslint . --fix`385. Scope auto-fix runs before broad rewrites:39 - fix a bounded folder or glob first40 - rerun the linter41 - rerun the frontend build or tests if the repo has them426. If the repo wants type-aware rules, verify the target files are covered by the intended `tsconfig.json` before enabling heavier rules.437. Do not hide noise by mass-disabling rules. Fix code, narrow scope, or phase severity deliberately.4445## Current Upstream Notes4647- ESLint `v10.9.1` includes the `v10.8.1` autofix and false-positive corrections and fixes `no-loss-of-precision` so numeric literals with a trailing decimal point are not reported incorrectly. Re-run focused rule fixtures before retaining a suppression for that syntax.48- Re-run the real lint suite and autofix snapshots before accepting churn, especially in semicolon-free code or generated output. Keep the `v10.8.0` flat-config type exports and formatter changes in mind when updating tooling integrations.49- Current docs clarify parser option precedence over `languageOptions` and document the v9/v10 migration codemods; review flat-config migrations that mix legacy parser settings with new config shapes.5051## Bootstrap When Missing52531. Detect current state:54 - `rg --files -g 'package.json' -g 'eslint.config.*' -g '.eslintrc*' -g 'tsconfig.json'`55 - `rg -n '"eslint"|"@typescript-eslint"|"eslint-plugin-" --glob 'package.json' .`562. Prefer a repo-local install:57 - `npm install --save-dev eslint`583. Add framework-specific plugins only when the repo actually uses the framework.594. Create or refine `eslint.config.js` or `eslint.config.mjs` instead of leaving setup implicit.605. Add repeatable commands to `AGENTS.md` and `package.json`, then verify with:61 - `npx eslint .`62 - `npx eslint . --fix`636. Return `status: configured` if the repo now has a working lint gate, or `status: improved` if existing setup was tightened.647. Return `status: not_applicable` only when another documented tool already owns JS or TS linting and migration is not requested.6566## Handle Failures6768- Parsing errors on TS or JSX usually mean the config or parser stack does not match the file set; verify framework plugins and `tsconfig.json` coverage first.69- `Definition for rule ... was not found` usually means a missing plugin package or a config targeting a different ESLint major version.70- `File ignored because of a matching ignore pattern` usually means the glob is too broad or ignores were left stale after a folder move.71- Huge warning floods should be handled in phases with bounded globs, not by downgrading everything to `off`.7273## Deliver7475- explicit ESLint ownership for JS or TS frontend assets76- checked-in commands for `lint` and `lint:fix`77- config decisions that match the repo's real frontend stack7879## Validate8081- ESLint is running from repo-local dependencies82- rule ownership is not ambiguous versus Biome or other linters83- the chosen globs match the real frontend folders84- fixes were verified with the repo's normal frontend build or test pass when available8586## Ralph Loop87881. Plan: analyze current state, target outcome, constraints, and risks.892. Execute one step and produce a concrete delta.903. Review the result and capture findings.914. Apply fixes in small batches and rerun checks.925. Update the plan after each iteration.936. Repeat until outcomes are acceptable.947. If a dependency is missing, bootstrap it or return `status: not_applicable` with a reason.9596### Required Result Format9798- `status`: `complete` | `clean` | `improved` | `configured` | `not_applicable` | `blocked`99- `plan`: concise plan and current step100- `actions_taken`: concrete changes made101- `verification`: commands, checks, or review evidence102- `remaining`: unresolved items or `none`103104## Example Requests105106- "Add ESLint to the React frontend in this ASP.NET Core repo."107- "Make JS and TS lint failures block CI."108- "Fix the current ESLint warnings without hiding them."