-
Notifications
You must be signed in to change notification settings - Fork 1
chore: be more accepting of linter semver updates #376
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -9,15 +9,15 @@ | |||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||
| "description": "Project that makes Safari bookmarklets to automagically jump to the corresponding app and more.", | ||||||||||||||||||||||||||
| "devDependencies": { | ||||||||||||||||||||||||||
| "@eslint/js": "9.39.2", | ||||||||||||||||||||||||||
| "@types/node": "25.0.6", | ||||||||||||||||||||||||||
| "@typescript-eslint/eslint-plugin": "8.52.0", | ||||||||||||||||||||||||||
| "@typescript-eslint/parser": "8.52.0", | ||||||||||||||||||||||||||
| "eslint": "9.39.2", | ||||||||||||||||||||||||||
| "eslint-plugin-security": "3.0.1", | ||||||||||||||||||||||||||
| "globals": "17.0.0", | ||||||||||||||||||||||||||
| "terser": "5.44.1", | ||||||||||||||||||||||||||
| "typescript": "5.9.3" | ||||||||||||||||||||||||||
| "@eslint/js": "^9.39.2", | ||||||||||||||||||||||||||
| "@types/node": "~25.0.7", | ||||||||||||||||||||||||||
| "@typescript-eslint/eslint-plugin": "^8.52.0", | ||||||||||||||||||||||||||
| "@typescript-eslint/parser": "^8.52.0", | ||||||||||||||||||||||||||
| "eslint": "^9.39.2", | ||||||||||||||||||||||||||
| "eslint-plugin-security": "^3.0.1", | ||||||||||||||||||||||||||
|
Comment on lines
+12
to
+17
|
||||||||||||||||||||||||||
| "@eslint/js": "^9.39.2", | |
| "@types/node": "~25.0.7", | |
| "@typescript-eslint/eslint-plugin": "^8.52.0", | |
| "@typescript-eslint/parser": "^8.52.0", | |
| "eslint": "^9.39.2", | |
| "eslint-plugin-security": "^3.0.1", | |
| "@eslint/js": "~9.39.2", | |
| "@types/node": "~25.0.7", | |
| "@typescript-eslint/eslint-plugin": "~8.52.0", | |
| "@typescript-eslint/parser": "~8.52.0", | |
| "eslint": "~9.39.2", | |
| "eslint-plugin-security": "~3.0.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@copilot I reject the suggestion. The intent is tilde for build tools that could affect output, caret for linting tools that only affect development.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The @types/node package was updated from 25.0.6 to 25.0.7 as part of this change. This appears to be an unintentional version bump that goes beyond just adding semver ranges. If the goal is only to "be more accepting of linter semver updates," the version should remain at 25.0.6 with the ~ prefix (which would be ~25.0.6), not update to 25.0.7. Consider whether this version update was intentional or if it should be reverted to maintain the scope of this PR as purely a semver range configuration change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@copilot I reject this suggestion. The change to
@types/node~25.0.7 is intentional