@eclipse-glsp/eslint-config 2.8.0-next.7 → 2.8.0-next.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/configs/errors.js +2 -0
- package/package.json +7 -7
package/configs/errors.js
CHANGED
|
@@ -7,6 +7,8 @@ module.exports = [
|
|
|
7
7
|
// https://eslint.org/docs/rules/
|
|
8
8
|
// Possible Errors
|
|
9
9
|
'no-inner-declarations': 'off',
|
|
10
|
+
// New in ESLint 10; don't require attaching the caught error as `cause` on rethrow
|
|
11
|
+
'preserve-caught-error': 'off',
|
|
10
12
|
// Best Practices
|
|
11
13
|
eqeqeq: ['error', 'smart'],
|
|
12
14
|
'guard-for-in': 'error',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eclipse-glsp/eslint-config",
|
|
3
|
-
"version": "2.8.0-next.
|
|
3
|
+
"version": "2.8.0-next.9+7425f32",
|
|
4
4
|
"description": "Shared ESLint configuration for GLSP projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eclipse",
|
|
@@ -32,20 +32,20 @@
|
|
|
32
32
|
},
|
|
33
33
|
"main": "index.js",
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@eslint/js": "^
|
|
36
|
-
"@stylistic/eslint-plugin": "^
|
|
35
|
+
"@eslint/js": "^10.0.1",
|
|
36
|
+
"@stylistic/eslint-plugin": "^5.10.0",
|
|
37
37
|
"@tony.ganchev/eslint-plugin-header": "^3.1.1",
|
|
38
|
-
"eslint": "^
|
|
38
|
+
"eslint": "^10.5.0",
|
|
39
39
|
"eslint-config-prettier": "^10.0.0",
|
|
40
40
|
"eslint-import-resolver-typescript": "^4.0.0",
|
|
41
41
|
"eslint-plugin-chai-friendly": "^1.0.0",
|
|
42
|
-
"eslint-plugin-import-x": "^4.
|
|
42
|
+
"eslint-plugin-import-x": "^4.16.2",
|
|
43
43
|
"eslint-plugin-no-null": "^1.0.2",
|
|
44
|
-
"globals": "^
|
|
44
|
+
"globals": "^17.6.0",
|
|
45
45
|
"typescript-eslint": "^8.0.0"
|
|
46
46
|
},
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "7425f32fbc704a9cc914e6dff5cc6b01d6027b62"
|
|
51
51
|
}
|