- Update zod-namespace-import snapshot (semicolon fix) - Add test cases for no-countall-number rule - Update rule pattern to match method calls on objects Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
418 B
YAML
21 lines
418 B
YAML
id: zod-namespace-import
|
|
snapshots:
|
|
? |
|
|
import { z } from "zod";
|
|
: fixed: |
|
|
import * as z from "zod";
|
|
labels:
|
|
- source: import { z } from "zod";
|
|
style: primary
|
|
start: 0
|
|
end: 24
|
|
? |
|
|
import { z, ZodError } from "zod";
|
|
: fixed: |
|
|
import * as z from "zod";
|
|
labels:
|
|
- source: import { z, ZodError } from "zod";
|
|
style: primary
|
|
start: 0
|
|
end: 34
|