eslint-config-skuba 7.3.0-replace-global-vars-20251117052457 → 8.0.0-rfc-upgrade-on-test-20251217012156

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 (3) hide show
  1. package/index.d.ts +2 -2
  2. package/index.js +0 -9
  3. package/package.json +7 -6
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import type { Linter } from 'eslint';
1
+ import type { Config } from 'eslint/config';
2
2
 
3
- declare const config: Linter.Config;
3
+ declare const config: Config[];
4
4
 
5
5
  export = config;
package/index.js CHANGED
@@ -187,15 +187,6 @@ module.exports = [
187
187
  ],
188
188
 
189
189
  'skuba/no-sync-in-promise-iterable': 'off',
190
-
191
- // Allow type imports for vi.importActual
192
- // https://github.com/vitest-dev/vitest/blob/1a290f80912f8aa492ddc056b5e85bfad0a4193a/packages/vitest/src/integrations/vi.ts#L245
193
- '@typescript-eslint/consistent-type-imports': [
194
- 'error',
195
- {
196
- disallowTypeAnnotations: false,
197
- },
198
- ],
199
190
  },
200
191
  },
201
192
  ...eslintPluginYml.configs['flat/prettier'].map((config) => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-skuba",
3
- "version": "7.3.0-replace-global-vars-20251117052457",
3
+ "version": "8.0.0-rfc-upgrade-on-test-20251217012156",
4
4
  "private": false,
5
5
  "description": "ESLint config for skuba",
6
6
  "homepage": "https://github.com/seek-oss/skuba/tree/main/packages/eslint-config-skuba#readme",
@@ -9,7 +9,8 @@
9
9
  },
10
10
  "repository": {
11
11
  "type": "git",
12
- "url": "git+https://github.com/seek-oss/skuba.git"
12
+ "url": "git+https://github.com/seek-oss/skuba.git",
13
+ "directory": "packages/eslint-config-skuba"
13
14
  },
14
15
  "license": "MIT",
15
16
  "sideEffects": false,
@@ -22,17 +23,17 @@
22
23
  "requireExtensions.js"
23
24
  ],
24
25
  "dependencies": {
25
- "eslint-config-seek": "14.6.0",
26
+ "eslint-config-seek": "15.0.1",
26
27
  "eslint-plugin-yml": "^1.14.0",
27
28
  "typescript-eslint": "^8.39.0",
28
- "eslint-plugin-skuba": "1.0.3-replace-global-vars-20251117052457"
29
+ "eslint-plugin-skuba": "2.0.0-rfc-upgrade-on-test-20251217012156"
29
30
  },
30
31
  "devDependencies": {
31
- "eslint": "^9.11.1",
32
+ "eslint": "^9.39.1",
32
33
  "typescript": "~5.9.0"
33
34
  },
34
35
  "peerDependencies": {
35
- "eslint": ">=9.11.1",
36
+ "eslint": ">=9.22.0",
36
37
  "typescript": ">=5.5.4"
37
38
  },
38
39
  "engines": {