Conversation
- Replaced ESLint and Prettier with Biome for linting and formatting - Added biome.jsonc configuration - Updated lint-staged to use Biome commands - Updated VSCode settings and recommendations for Biome - Modified .editorconfig to align with Biome formatting defaults - Updated various config files (commitlint, rspack, stylelint)
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
This is the final PR Bugbot will review for you during this billing cycle
Your free Bugbot reviews will reset on March 14
Details
You are on the Bugbot Free tier. On this plan, Bugbot will review limited PRs each billing cycle.
To receive Bugbot reviews on all of your PRs, visit the Cursor dashboard to activate Pro and start your 14-day free trial.
| @@ -0,0 +1,13 @@ | |||
| const config = { | |||
| '*': ['secretlint --maskSecrets --secretlintignore .gitignore "**/*"'], | |||
There was a problem hiding this comment.
| const config = { | ||
| '*': ['secretlint --maskSecrets --secretlintignore .gitignore "**/*"'], | ||
| 'src/**/*.{js,jsx,ts,tsx}': ['biome check --write --no-errors-on-unmatched'], | ||
| 'src/**/*.ts?(x)': () => 'tsc-files --noEmit', |
There was a problem hiding this comment.
Type check task drops staged file scope
Medium Severity
The lint-staged TypeScript task is now a function returning tsc-files --noEmit without using the provided file list. In function-based tasks, lint-staged does not inject filenames automatically, so tsc-files no longer runs against the staged TS files as intended.


chore(tooling): migrate from eslint/prettier to biome
Note
Low Risk
Tooling-only changes (lint/format/CI) with no runtime or plugin logic modifications; main risk is CI or developer workflow breakage if Biome configuration differs from prior ESLint behavior.
Overview
Migrates TypeScript code quality tooling from ESLint/Prettier to Biome, adding
biome.jsonc, updatingpackage.jsonscripts/deps, and removing the existingeslint.config.mjsand old.lintstagedrc.json.Updates automation to enforce the new workflow: introduces a GitHub Action running
biome ci ., switches lint-staged to run Biome checks/formatting (plus existing Stylelint/secretlint/tsc-files), and adjusts VS Code/editor configuration (.vscode/*,.editorconfig) to default to Biome formatting while keeping PHP/HTML tab indentation.Written by Cursor Bugbot for commit aed0ca3. This will update automatically on new commits. Configure here.