eslint-plugin-zod 4.13.1 → 4.14.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.
package/README.md CHANGED
@@ -20,7 +20,7 @@
20
20
  [ESLint](https://eslint.org) plugin that adds custom linting rules to enforce best practices when using [Zod](https://github.com/colinhacks/zod).
21
21
 
22
22
  It can also work with [Oxlint](https://oxc.rs/docs/guide/usage/linter.html)!\
23
- Find out more about [Oxlint's `jsPLugins`](https://oxc.rs/docs/guide/usage/linter/js-plugins.html).
23
+ Find out more about [Oxlint's `jsPlugins`](https://oxc.rs/docs/guide/usage/linter/js-plugins.html).
24
24
 
25
25
  ## Rules
26
26
 
@@ -15,10 +15,15 @@ const noDuplicateSchemaMethods = require_create_plugin_rule.createZodPluginRule(
15
15
  "and",
16
16
  "array",
17
17
  "check",
18
+ "endsWith",
19
+ "includes",
18
20
  "or",
21
+ "overwrite",
19
22
  "pipe",
20
23
  "refine",
24
+ "regex",
21
25
  "register",
26
+ "startsWith",
22
27
  "superRefine",
23
28
  "transform"
24
29
  ])
@@ -15,10 +15,15 @@ const noDuplicateSchemaMethods = createZodPluginRule({
15
15
  "and",
16
16
  "array",
17
17
  "check",
18
+ "endsWith",
19
+ "includes",
18
20
  "or",
21
+ "overwrite",
19
22
  "pipe",
20
23
  "refine",
24
+ "regex",
21
25
  "register",
26
+ "startsWith",
22
27
  "superRefine",
23
28
  "transform"
24
29
  ])
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-zod",
3
- "version": "4.13.1",
3
+ "version": "4.14.0",
4
4
  "description": "ESLint plugin that adds custom linting rules to enforce best practices when using Zod",
5
5
  "keywords": [
6
6
  "eslint",
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "@typescript-eslint/utils": "^8.70.0",
42
- "@eslint-zod/utils": "5.0.1"
42
+ "@eslint-zod/utils": "5.1.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@arethetypeswrong/cli": "0.18.5",