Skip to content
Merged
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 .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 20.19.4
nodejs 20.19.5
Copy link

Choose a reason for hiding this comment

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

Synchronize the Node.js version here with any .nvmrc or package.json engines fields to maintain consistency across your project. You could also automate version bumps in CI to avoid mismatches when multiple developers work on the repo.

158 changes: 79 additions & 79 deletions pr-review/package-lock.json

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

8 changes: 4 additions & 4 deletions pr-review/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@
"zod": "4.1.5"
},
"devDependencies": {
"@eslint/js": "9.34.0",
"@types/node": "22.18.0",
"@eslint/js": "9.35.0",
"@types/node": "22.18.1",
"@vercel/ncc": "0.38.3",
"eslint": "9.34.0",
"eslint": "9.35.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-sonarjs": "3.0.5",
"eslint-plugin-unicorn": "60.0.0",
"prettier": "3.6.2",
"tsx": "4.20.5",
"typescript": "5.9.2",
"typescript-eslint": "8.41.0",
"typescript-eslint": "8.42.0",
Copy link

Choose a reason for hiding this comment

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

The package name typescript-eslint isn’t the official ESLint plugin. You should use @typescript-eslint/eslint-plugin (and optionally @typescript-eslint/parser) to ensure ESLint recognizes TypeScript rules:

"devDependencies": {
  "@typescript-eslint/eslint-plugin": "8.42.0",
  "@typescript-eslint/parser": "8.42.0"
}

"yaml": "2.8.1"
}
}
Loading