Skip to content

Commit 3f8e9ba

Browse files
committed
Pump @eslint/js and eslint to latest (#1396)
This pull request updates ESLint and `@eslint/js` to their latest major version 10. The changes upgrade the linting infrastructure from version 9 to version 10 for both packages. **Changes:** - Updated `@eslint/js` from ^9.36.0 to ^10.0.1 - Updated eslint from ^9.16.0 to ^10.0.2 Fix: #1395
1 parent 2125391 commit 3f8e9ba

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/parameter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ function validValue(value, type) {
883883
return type === ParameterType.PARAMETER_NOT_SET;
884884
}
885885

886-
let result = true;
886+
let result;
887887
switch (type) {
888888
case ParameterType.PARAMETER_NOT_SET:
889889
result = !value;

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@
4848
"url": "git+https://github.com/RobotWebTools/rclnodejs.git"
4949
},
5050
"devDependencies": {
51-
"@eslint/js": "^9.36.0",
51+
"@eslint/js": "^10.0.1",
5252
"@types/node": "^25.0.2",
5353
"@typescript-eslint/eslint-plugin": "^8.18.0",
5454
"@typescript-eslint/parser": "^8.18.0",
5555
"clang-format": "^1.8.0",
5656
"commander": "^14.0.0",
5757
"coveralls": "^3.1.1",
5858
"deep-equal": "^2.2.3",
59-
"eslint": "^9.16.0",
59+
"eslint": "^10.0.2",
6060
"eslint-config-prettier": "^10.0.2",
6161
"eslint-plugin-prettier": "^5.2.1",
6262
"globals": "^17.0.0",

0 commit comments

Comments
 (0)