Skip to content
Open
Show file tree
Hide file tree
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 eval/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^7.7.0",
Comment on lines +80 to 81
Copy link

Choose a reason for hiding this comment

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

There's a version mismatch between @typescript-eslint/eslint-plugin (being updated to v8.35.1) and @typescript-eslint/parser (remaining at v7.7.0). According to the plugin's peer dependencies, it expects the parser to be at the same major version (^8.35.1).

This misalignment may cause compatibility issues since these packages are designed to work together. Consider updating both packages to the same major version:

"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
Suggested change
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^7.7.0",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",

Spotted by Diamond

Is this helpful? React 👍 or 👎 to let us know.

"esbuild": "^0.25.0",
"eslint": "^8.57.0",
Expand Down
194 changes: 177 additions & 17 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.