@appium/eslint-config-appium-ts 2.0.3 → 2.0.5

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.
Files changed (2) hide show
  1. package/index.mjs +3 -3
  2. package/package.json +6 -6
package/index.mjs CHANGED
@@ -185,11 +185,11 @@ export default [
185
185
  },
186
186
 
187
187
  {
188
- ...mochaPlugin.configs.flat.recommended,
188
+ ...mochaPlugin.configs.recommended,
189
189
  name: 'Test Files',
190
190
  files: ['**/test/**', '*.spec.*js', '-specs.*js', '*.spec.ts'],
191
191
  rules: {
192
- ...mochaPlugin.configs.flat.recommended.rules,
192
+ ...mochaPlugin.configs.recommended.rules,
193
193
  /**
194
194
  * Both `@ts-expect-error` and `@ts-ignore` are allowed to be used with impunity in tests.
195
195
  * @remarks We often test things which explicitly violate types.
@@ -208,8 +208,8 @@ export default [
208
208
  'mocha/no-exclusive-tests': 2,
209
209
  'mocha/no-exports': 'off',
210
210
  'mocha/no-mocha-arrows': 2,
211
+ 'mocha/no-pending-tests': 'off',
211
212
  'mocha/no-setup-in-describe': 'off',
212
- 'mocha/no-skipped-tests': 'off',
213
213
  },
214
214
  },
215
215
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@appium/eslint-config-appium-ts",
3
3
  "type": "module",
4
- "version": "2.0.3",
4
+ "version": "2.0.5",
5
5
  "description": "Shared ESLint config for Appium projects (TypeScript version)",
6
6
  "keywords": [
7
7
  "eslint",
@@ -29,14 +29,14 @@
29
29
  "test:smoke": "exit 0"
30
30
  },
31
31
  "dependencies": {
32
- "@eslint/compat": "1.4.0",
33
- "@eslint/js": "9.37.0",
32
+ "@eslint/compat": "2.0.0",
33
+ "@eslint/js": "9.39.1",
34
34
  "eslint-config-prettier": "10.1.8",
35
35
  "eslint-import-resolver-typescript": "4.4.4",
36
36
  "eslint-plugin-import": "2.32.0",
37
- "eslint-plugin-mocha": "10.5.0",
37
+ "eslint-plugin-mocha": "11.2.0",
38
38
  "eslint-plugin-promise": "7.2.1",
39
- "typescript-eslint": "8.46.0"
39
+ "typescript-eslint": "8.48.1"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "eslint": "^9.0.0"
@@ -48,5 +48,5 @@
48
48
  "publishConfig": {
49
49
  "access": "public"
50
50
  },
51
- "gitHead": "c00cbfa1fb6d4bd0d8dac00eed02f87587e0eadf"
51
+ "gitHead": "9004554879687ddad51d3afdf8c711b027efbd99"
52
52
  }