Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/middleware/fastify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"@modelcontextprotocol/eslint-config": "workspace:^",
"@eslint/js": "catalog:devTools",
"@typescript/native-preview": "catalog:devTools",
"eslint": "catalog:devTools",
"eslint": "10.0.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WARNING: Hardcoding eslint to 10.0.0 breaks the workspace catalog convention

Every other package in this monorepo uses catalog:devTools, which currently resolves to ^9.39.2 in pnpm-workspace.yaml:25. After this change, the fastify package will run ESLint v10 while the shared @modelcontextprotocol/eslint-config and all other workspace packages still run v9. This breaks monorepo consistency and is especially risky with ESLint v10, which drops legacy config support, changes config lookup behavior, and makes eslint-env comments cause errors.


Reply with @kilocode-bot fix it to have Kilo Code address this issue.

"eslint-config-prettier": "catalog:devTools",
"eslint-plugin-n": "catalog:devTools",
"prettier": "catalog:devTools",
Expand Down
Loading