eslint-config-seek 14.7.0-master-20251112032213 → 14.7.0

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/base.js +5 -0
  2. package/package.json +2 -1
package/base.js CHANGED
@@ -4,6 +4,7 @@ const jestPlugin = require('eslint-plugin-jest');
4
4
  const cypress = require('eslint-plugin-cypress');
5
5
  const eslintConfigPrettier = require('eslint-config-prettier');
6
6
  const tseslint = require('typescript-eslint');
7
+ const importZod = require('eslint-plugin-import-zod');
7
8
 
8
9
  const OFF = 0;
9
10
  const WARN = 1;
@@ -289,4 +290,8 @@ module.exports = [
289
290
  ...cypress.configs.recommended,
290
291
  files: [`**/cypress/**/*.{${allExtensions}}`],
291
292
  },
293
+ ...importZod.configs.recommended.map((config) => ({
294
+ ...config,
295
+ files: [`**/*.{${tsExtensions}}`],
296
+ })),
292
297
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-seek",
3
- "version": "14.7.0-master-20251112032213",
3
+ "version": "14.7.0",
4
4
  "description": "ESLint configuration used by SEEK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -27,6 +27,7 @@
27
27
  "eslint-import-resolver-typescript": "^4.0.0",
28
28
  "eslint-plugin-cypress": "^5.0.0",
29
29
  "eslint-plugin-import-x": "^4.9.0",
30
+ "eslint-plugin-import-zod": "^1.2.0",
30
31
  "eslint-plugin-jest": "^29.0.0",
31
32
  "eslint-plugin-react": "^7.35.0",
32
33
  "eslint-plugin-react-hooks": "^5.0.0",