eslint-plugin-better-tailwindcss 4.6.0 → 4.6.1
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/lib/configs/config.d.ts +30 -2862
- package/lib/configs/config.d.ts.map +1 -1
- package/lib/configs/config.js +1 -0
- package/lib/configs/config.js.map +1 -1
- package/lib/options/descriptions.d.ts +201 -201
- package/lib/options/schemas/attributes.d.ts +34 -34
- package/lib/options/schemas/attributes.d.ts.map +1 -1
- package/lib/options/schemas/callees.d.ts +34 -34
- package/lib/options/schemas/callees.d.ts.map +1 -1
- package/lib/options/schemas/common.d.ts +14 -14
- package/lib/options/schemas/matchers.d.ts +8 -8
- package/lib/options/schemas/selectors.d.ts +447 -447
- package/lib/options/schemas/tags.d.ts +34 -34
- package/lib/options/schemas/tags.d.ts.map +1 -1
- package/lib/options/schemas/variables.d.ts +34 -34
- package/lib/options/schemas/variables.d.ts.map +1 -1
- package/lib/parsers/es.js.map +1 -1
- package/lib/rules/enforce-canonical-classes.d.ts +2 -205
- package/lib/rules/enforce-canonical-classes.d.ts.map +1 -1
- package/lib/rules/enforce-canonical-classes.js +1 -1
- package/lib/rules/enforce-consistent-class-order.d.ts +3 -208
- package/lib/rules/enforce-consistent-class-order.d.ts.map +1 -1
- package/lib/rules/enforce-consistent-important-position.d.ts +2 -203
- package/lib/rules/enforce-consistent-important-position.d.ts.map +1 -1
- package/lib/rules/enforce-consistent-line-wrapping.d.ts +3 -211
- package/lib/rules/enforce-consistent-line-wrapping.d.ts.map +1 -1
- package/lib/rules/enforce-consistent-variable-syntax.d.ts +2 -203
- package/lib/rules/enforce-consistent-variable-syntax.d.ts.map +1 -1
- package/lib/rules/enforce-consistent-variable-syntax.js +1 -1
- package/lib/rules/enforce-consistent-variant-order.d.ts +2 -203
- package/lib/rules/enforce-consistent-variant-order.d.ts.map +1 -1
- package/lib/rules/enforce-logical-properties.d.ts +2 -203
- package/lib/rules/enforce-logical-properties.d.ts.map +1 -1
- package/lib/rules/enforce-logical-properties.js +1 -1
- package/lib/rules/enforce-shorthand-classes.d.ts +2 -203
- package/lib/rules/enforce-shorthand-classes.d.ts.map +1 -1
- package/lib/rules/no-conflicting-classes.d.ts +2 -203
- package/lib/rules/no-conflicting-classes.d.ts.map +1 -1
- package/lib/rules/no-deprecated-classes.d.ts +2 -203
- package/lib/rules/no-deprecated-classes.d.ts.map +1 -1
- package/lib/rules/no-deprecated-classes.js.map +1 -1
- package/lib/rules/no-duplicate-classes.d.ts +2 -203
- package/lib/rules/no-duplicate-classes.d.ts.map +1 -1
- package/lib/rules/no-restricted-classes.d.ts +2 -207
- package/lib/rules/no-restricted-classes.d.ts.map +1 -1
- package/lib/rules/no-unknown-classes.d.ts +2 -203
- package/lib/rules/no-unknown-classes.d.ts.map +1 -1
- package/lib/rules/no-unknown-classes.js +1 -1
- package/lib/rules/no-unnecessary-whitespace.d.ts +2 -203
- package/lib/rules/no-unnecessary-whitespace.d.ts.map +1 -1
- package/lib/types/rule.d.ts +6 -6
- package/lib/types/rule.d.ts.map +1 -1
- package/lib/utils/matchers.d.ts.map +1 -1
- package/lib/utils/matchers.js +20 -13
- package/lib/utils/matchers.js.map +1 -1
- package/lib/utils/rule.d.ts +2 -8
- package/lib/utils/rule.d.ts.map +1 -1
- package/lib/utils/rule.js +1 -1
- package/lib/utils/rule.js.map +1 -1
- package/lib/utils/utils.js +1 -1
- package/package.json +39 -35
- package/lib/utils/project.d.ts +0 -4
- package/lib/utils/project.d.ts.map +0 -1
- package/lib/utils/project.js +0 -22
- package/lib/utils/project.js.map +0 -1
- package/lib/utils/regex.d.ts +0 -2
- package/lib/utils/regex.d.ts.map +0 -1
- package/lib/utils/regex.js +0 -24
- package/lib/utils/regex.js.map +0 -1
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import { MatcherType, SelectorKind } from "../../types/rule.js";
|
|
2
2
|
import type { InferOutput } from "valibot";
|
|
3
|
-
export declare const SELECTOR_SCHEMA: import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
4
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Attribute, undefined>, import("valibot").DescriptionAction<SelectorKind.Attribute, "Selector kind that determines where matching is applied.">]>;
|
|
5
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
6
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
7
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
8
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
9
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
10
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
11
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
12
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
13
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
14
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
15
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
16
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
17
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
18
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
19
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
20
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
21
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
22
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
3
|
+
export declare const SELECTOR_SCHEMA: import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
4
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Attribute, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Attribute, "Selector kind that determines where matching is applied.">]>;
|
|
5
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
6
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
7
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
8
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
9
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
10
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
11
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
12
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
13
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
14
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
15
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
16
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
17
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
18
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
19
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
20
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
21
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
22
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
23
23
|
type: MatcherType.String;
|
|
24
24
|
} | {
|
|
25
25
|
path?: string | undefined;
|
|
@@ -28,8 +28,8 @@ export declare const SELECTOR_SCHEMA: import("valibot").UnionSchema<[import("val
|
|
|
28
28
|
path?: string | undefined;
|
|
29
29
|
type: MatcherType.ObjectValue;
|
|
30
30
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
31
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
32
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
31
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
32
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
33
33
|
type: MatcherType.String;
|
|
34
34
|
} | {
|
|
35
35
|
path?: string | undefined;
|
|
@@ -49,28 +49,28 @@ export declare const SELECTOR_SCHEMA: import("valibot").UnionSchema<[import("val
|
|
|
49
49
|
})[];
|
|
50
50
|
type: MatcherType.AnonymousFunctionReturn;
|
|
51
51
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
52
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
53
|
-
}, undefined>, import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
54
|
-
readonly callTarget: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
55
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Callee, undefined>, import("valibot").DescriptionAction<SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
56
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
57
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
58
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
59
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
60
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
61
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
62
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
63
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
64
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
65
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
66
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
67
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
68
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
69
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
70
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
71
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
72
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
73
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
52
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
53
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
54
|
+
readonly callTarget: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
55
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Callee, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
56
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
57
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
58
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
59
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
60
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
61
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
62
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
63
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
64
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
65
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
66
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
67
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
68
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
69
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
70
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
71
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
72
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
73
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
74
74
|
type: MatcherType.String;
|
|
75
75
|
} | {
|
|
76
76
|
path?: string | undefined;
|
|
@@ -79,8 +79,8 @@ export declare const SELECTOR_SCHEMA: import("valibot").UnionSchema<[import("val
|
|
|
79
79
|
path?: string | undefined;
|
|
80
80
|
type: MatcherType.ObjectValue;
|
|
81
81
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
82
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
83
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
82
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
83
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
84
84
|
type: MatcherType.String;
|
|
85
85
|
} | {
|
|
86
86
|
path?: string | undefined;
|
|
@@ -100,31 +100,31 @@ export declare const SELECTOR_SCHEMA: import("valibot").UnionSchema<[import("val
|
|
|
100
100
|
})[];
|
|
101
101
|
type: MatcherType.AnonymousFunctionReturn;
|
|
102
102
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
103
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
104
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for callee paths that should be linted.">]>, undefined>;
|
|
105
|
-
readonly targetArgument: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional argument target for call arguments: index, first, last, or all.">]>;
|
|
106
|
-
readonly targetCall: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
107
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
108
|
-
readonly callTarget: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
109
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Callee, undefined>, import("valibot").DescriptionAction<SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
110
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
111
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
112
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
113
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
114
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
115
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
116
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
117
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
118
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
119
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
120
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
121
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
122
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
123
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
124
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
125
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
126
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
127
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
103
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
104
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for callee paths that should be linted.">]>, undefined>;
|
|
105
|
+
readonly targetArgument: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional argument target for call arguments: index, first, last, or all.">]>;
|
|
106
|
+
readonly targetCall: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
107
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
108
|
+
readonly callTarget: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
109
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Callee, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
110
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
111
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
112
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
113
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
114
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
115
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
116
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
117
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
118
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
119
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
120
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
121
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
122
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
123
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
124
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
125
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
126
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
127
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
128
128
|
type: MatcherType.String;
|
|
129
129
|
} | {
|
|
130
130
|
path?: string | undefined;
|
|
@@ -133,8 +133,8 @@ export declare const SELECTOR_SCHEMA: import("valibot").UnionSchema<[import("val
|
|
|
133
133
|
path?: string | undefined;
|
|
134
134
|
type: MatcherType.ObjectValue;
|
|
135
135
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
136
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
137
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
136
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
137
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
138
138
|
type: MatcherType.String;
|
|
139
139
|
} | {
|
|
140
140
|
path?: string | undefined;
|
|
@@ -154,30 +154,30 @@ export declare const SELECTOR_SCHEMA: import("valibot").UnionSchema<[import("val
|
|
|
154
154
|
})[];
|
|
155
155
|
type: MatcherType.AnonymousFunctionReturn;
|
|
156
156
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
157
|
-
readonly name: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>, undefined>;
|
|
158
|
-
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for callee paths that should be linted.">]>;
|
|
159
|
-
readonly targetArgument: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional argument target for call arguments: index, first, last, or all.">]>;
|
|
160
|
-
readonly targetCall: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
161
|
-
}, undefined>], undefined>, import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
162
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Tag, undefined>, import("valibot").DescriptionAction<SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
163
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
164
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
165
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
166
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
167
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
168
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
169
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
170
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
171
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
172
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
173
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
174
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
175
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
176
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
177
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
178
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
179
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
180
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
157
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>, undefined>;
|
|
158
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for callee paths that should be linted.">]>;
|
|
159
|
+
readonly targetArgument: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional argument target for call arguments: index, first, last, or all.">]>;
|
|
160
|
+
readonly targetCall: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
161
|
+
}, undefined>], undefined>, import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
162
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Tag, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
163
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
164
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
165
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
166
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
167
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
168
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
169
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
170
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
171
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
172
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
173
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
174
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
175
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
176
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
177
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
178
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
179
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
180
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
181
181
|
type: MatcherType.String;
|
|
182
182
|
} | {
|
|
183
183
|
path?: string | undefined;
|
|
@@ -186,8 +186,8 @@ export declare const SELECTOR_SCHEMA: import("valibot").UnionSchema<[import("val
|
|
|
186
186
|
path?: string | undefined;
|
|
187
187
|
type: MatcherType.ObjectValue;
|
|
188
188
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
189
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
190
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
189
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
190
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
191
191
|
type: MatcherType.String;
|
|
192
192
|
} | {
|
|
193
193
|
path?: string | undefined;
|
|
@@ -207,28 +207,28 @@ export declare const SELECTOR_SCHEMA: import("valibot").UnionSchema<[import("val
|
|
|
207
207
|
})[];
|
|
208
208
|
type: MatcherType.AnonymousFunctionReturn;
|
|
209
209
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
210
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
211
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for tag paths that should be linted.">]>, undefined>;
|
|
212
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
213
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Tag, undefined>, import("valibot").DescriptionAction<SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
214
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
215
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
216
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
217
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
218
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
219
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
220
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
221
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
222
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
223
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
224
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
225
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
226
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
227
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
228
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
229
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
230
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
231
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
210
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
211
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for tag paths that should be linted.">]>, undefined>;
|
|
212
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
213
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Tag, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
214
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
215
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
216
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
217
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
218
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
219
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
220
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
221
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
222
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
223
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
224
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
225
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
226
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
227
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
228
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
229
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
230
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
231
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
232
232
|
type: MatcherType.String;
|
|
233
233
|
} | {
|
|
234
234
|
path?: string | undefined;
|
|
@@ -237,8 +237,8 @@ export declare const SELECTOR_SCHEMA: import("valibot").UnionSchema<[import("val
|
|
|
237
237
|
path?: string | undefined;
|
|
238
238
|
type: MatcherType.ObjectValue;
|
|
239
239
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
240
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
241
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
240
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
241
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
242
242
|
type: MatcherType.String;
|
|
243
243
|
} | {
|
|
244
244
|
path?: string | undefined;
|
|
@@ -258,28 +258,28 @@ export declare const SELECTOR_SCHEMA: import("valibot").UnionSchema<[import("val
|
|
|
258
258
|
})[];
|
|
259
259
|
type: MatcherType.AnonymousFunctionReturn;
|
|
260
260
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
261
|
-
readonly name: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>, undefined>;
|
|
262
|
-
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for tag paths that should be linted.">]>;
|
|
263
|
-
}, undefined>], undefined>, import("valibot").StrictObjectSchema<{
|
|
264
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Variable, undefined>, import("valibot").DescriptionAction<SelectorKind.Variable, "Selector kind that determines where matching is applied.">]>;
|
|
265
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
266
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
267
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
268
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
269
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
270
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
271
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
272
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
273
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
274
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
275
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
276
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
277
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
278
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
279
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
280
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
281
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
282
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
261
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>, undefined>;
|
|
262
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for tag paths that should be linted.">]>;
|
|
263
|
+
}, undefined>], undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
264
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Variable, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Variable, "Selector kind that determines where matching is applied.">]>;
|
|
265
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
266
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
267
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
268
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
269
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
270
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
271
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
272
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
273
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
274
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
275
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
276
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
277
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
278
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
279
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
280
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
281
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
282
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
283
283
|
type: MatcherType.String;
|
|
284
284
|
} | {
|
|
285
285
|
path?: string | undefined;
|
|
@@ -288,8 +288,8 @@ export declare const SELECTOR_SCHEMA: import("valibot").UnionSchema<[import("val
|
|
|
288
288
|
path?: string | undefined;
|
|
289
289
|
type: MatcherType.ObjectValue;
|
|
290
290
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
291
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
292
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
291
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
292
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
293
293
|
type: MatcherType.String;
|
|
294
294
|
} | {
|
|
295
295
|
path?: string | undefined;
|
|
@@ -309,29 +309,29 @@ export declare const SELECTOR_SCHEMA: import("valibot").UnionSchema<[import("val
|
|
|
309
309
|
})[];
|
|
310
310
|
type: MatcherType.AnonymousFunctionReturn;
|
|
311
311
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
312
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
312
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
313
313
|
}, undefined>], undefined>;
|
|
314
314
|
export type Selector = InferOutput<typeof SELECTOR_SCHEMA>;
|
|
315
|
-
export declare const SELECTORS_SCHEMA: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
316
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Attribute, undefined>, import("valibot").DescriptionAction<SelectorKind.Attribute, "Selector kind that determines where matching is applied.">]>;
|
|
317
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
318
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
319
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
320
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
321
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
322
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
323
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
324
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
325
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
326
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
327
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
328
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
329
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
330
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
331
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
332
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
333
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
334
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
315
|
+
export declare const SELECTORS_SCHEMA: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
316
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Attribute, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Attribute, "Selector kind that determines where matching is applied.">]>;
|
|
317
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
318
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
319
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
320
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
321
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
322
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
323
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
324
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
325
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
326
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
327
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
328
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
329
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
330
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
331
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
332
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
333
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
334
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
335
335
|
type: MatcherType.String;
|
|
336
336
|
} | {
|
|
337
337
|
path?: string | undefined;
|
|
@@ -340,8 +340,8 @@ export declare const SELECTORS_SCHEMA: import("valibot").SchemaWithPipe<readonly
|
|
|
340
340
|
path?: string | undefined;
|
|
341
341
|
type: MatcherType.ObjectValue;
|
|
342
342
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
343
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
344
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
343
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
344
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
345
345
|
type: MatcherType.String;
|
|
346
346
|
} | {
|
|
347
347
|
path?: string | undefined;
|
|
@@ -361,28 +361,28 @@ export declare const SELECTORS_SCHEMA: import("valibot").SchemaWithPipe<readonly
|
|
|
361
361
|
})[];
|
|
362
362
|
type: MatcherType.AnonymousFunctionReturn;
|
|
363
363
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
364
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
365
|
-
}, undefined>, import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
366
|
-
readonly callTarget: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
367
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Callee, undefined>, import("valibot").DescriptionAction<SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
368
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
369
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
370
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
371
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
372
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
373
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
374
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
375
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
376
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
377
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
378
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
379
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
380
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
381
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
382
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
383
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
384
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
385
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
364
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
365
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
366
|
+
readonly callTarget: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
367
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Callee, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
368
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
369
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
370
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
371
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
372
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
373
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
374
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
375
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
376
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
377
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
378
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
379
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
380
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
381
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
382
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
383
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
384
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
385
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
386
386
|
type: MatcherType.String;
|
|
387
387
|
} | {
|
|
388
388
|
path?: string | undefined;
|
|
@@ -391,8 +391,8 @@ export declare const SELECTORS_SCHEMA: import("valibot").SchemaWithPipe<readonly
|
|
|
391
391
|
path?: string | undefined;
|
|
392
392
|
type: MatcherType.ObjectValue;
|
|
393
393
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
394
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
395
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
394
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
395
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
396
396
|
type: MatcherType.String;
|
|
397
397
|
} | {
|
|
398
398
|
path?: string | undefined;
|
|
@@ -412,31 +412,31 @@ export declare const SELECTORS_SCHEMA: import("valibot").SchemaWithPipe<readonly
|
|
|
412
412
|
})[];
|
|
413
413
|
type: MatcherType.AnonymousFunctionReturn;
|
|
414
414
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
415
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
416
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for callee paths that should be linted.">]>, undefined>;
|
|
417
|
-
readonly targetArgument: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional argument target for call arguments: index, first, last, or all.">]>;
|
|
418
|
-
readonly targetCall: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
419
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
420
|
-
readonly callTarget: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
421
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Callee, undefined>, import("valibot").DescriptionAction<SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
422
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
423
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
424
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
425
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
426
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
427
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
428
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
429
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
430
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
431
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
432
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
433
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
434
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
435
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
436
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
437
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
438
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
439
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
415
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
416
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for callee paths that should be linted.">]>, undefined>;
|
|
417
|
+
readonly targetArgument: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional argument target for call arguments: index, first, last, or all.">]>;
|
|
418
|
+
readonly targetCall: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
419
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
420
|
+
readonly callTarget: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
421
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Callee, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
422
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
423
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
424
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
425
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
426
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
427
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
428
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
429
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
430
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
431
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
432
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
433
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
434
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
435
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
436
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
437
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
438
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
439
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
440
440
|
type: MatcherType.String;
|
|
441
441
|
} | {
|
|
442
442
|
path?: string | undefined;
|
|
@@ -445,8 +445,8 @@ export declare const SELECTORS_SCHEMA: import("valibot").SchemaWithPipe<readonly
|
|
|
445
445
|
path?: string | undefined;
|
|
446
446
|
type: MatcherType.ObjectValue;
|
|
447
447
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
448
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
449
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
448
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
449
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
450
450
|
type: MatcherType.String;
|
|
451
451
|
} | {
|
|
452
452
|
path?: string | undefined;
|
|
@@ -466,30 +466,30 @@ export declare const SELECTORS_SCHEMA: import("valibot").SchemaWithPipe<readonly
|
|
|
466
466
|
})[];
|
|
467
467
|
type: MatcherType.AnonymousFunctionReturn;
|
|
468
468
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
469
|
-
readonly name: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>, undefined>;
|
|
470
|
-
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for callee paths that should be linted.">]>;
|
|
471
|
-
readonly targetArgument: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional argument target for call arguments: index, first, last, or all.">]>;
|
|
472
|
-
readonly targetCall: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
473
|
-
}, undefined>], undefined>, import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
474
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Tag, undefined>, import("valibot").DescriptionAction<SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
475
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
476
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
477
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
478
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
479
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
480
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
481
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
482
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
483
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
484
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
485
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
486
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
487
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
488
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
489
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
490
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
491
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
492
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
469
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>, undefined>;
|
|
470
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for callee paths that should be linted.">]>;
|
|
471
|
+
readonly targetArgument: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional argument target for call arguments: index, first, last, or all.">]>;
|
|
472
|
+
readonly targetCall: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
473
|
+
}, undefined>], undefined>, import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
474
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Tag, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
475
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
476
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
477
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
478
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
479
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
480
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
481
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
482
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
483
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
484
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
485
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
486
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
487
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
488
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
489
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
490
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
491
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
492
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
493
493
|
type: MatcherType.String;
|
|
494
494
|
} | {
|
|
495
495
|
path?: string | undefined;
|
|
@@ -498,8 +498,8 @@ export declare const SELECTORS_SCHEMA: import("valibot").SchemaWithPipe<readonly
|
|
|
498
498
|
path?: string | undefined;
|
|
499
499
|
type: MatcherType.ObjectValue;
|
|
500
500
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
501
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
502
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
501
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
502
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
503
503
|
type: MatcherType.String;
|
|
504
504
|
} | {
|
|
505
505
|
path?: string | undefined;
|
|
@@ -519,28 +519,28 @@ export declare const SELECTORS_SCHEMA: import("valibot").SchemaWithPipe<readonly
|
|
|
519
519
|
})[];
|
|
520
520
|
type: MatcherType.AnonymousFunctionReturn;
|
|
521
521
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
522
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
523
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for tag paths that should be linted.">]>, undefined>;
|
|
524
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
525
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Tag, undefined>, import("valibot").DescriptionAction<SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
526
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
527
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
528
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
529
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
530
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
531
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
532
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
533
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
534
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
535
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
536
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
537
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
538
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
539
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
540
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
541
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
542
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
543
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
522
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
523
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for tag paths that should be linted.">]>, undefined>;
|
|
524
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
525
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Tag, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
526
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
527
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
528
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
529
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
530
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
531
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
532
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
533
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
534
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
535
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
536
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
537
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
538
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
539
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
540
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
541
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
542
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
543
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
544
544
|
type: MatcherType.String;
|
|
545
545
|
} | {
|
|
546
546
|
path?: string | undefined;
|
|
@@ -549,8 +549,8 @@ export declare const SELECTORS_SCHEMA: import("valibot").SchemaWithPipe<readonly
|
|
|
549
549
|
path?: string | undefined;
|
|
550
550
|
type: MatcherType.ObjectValue;
|
|
551
551
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
552
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
553
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
552
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
553
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
554
554
|
type: MatcherType.String;
|
|
555
555
|
} | {
|
|
556
556
|
path?: string | undefined;
|
|
@@ -570,28 +570,28 @@ export declare const SELECTORS_SCHEMA: import("valibot").SchemaWithPipe<readonly
|
|
|
570
570
|
})[];
|
|
571
571
|
type: MatcherType.AnonymousFunctionReturn;
|
|
572
572
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
573
|
-
readonly name: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>, undefined>;
|
|
574
|
-
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for tag paths that should be linted.">]>;
|
|
575
|
-
}, undefined>], undefined>, import("valibot").StrictObjectSchema<{
|
|
576
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Variable, undefined>, import("valibot").DescriptionAction<SelectorKind.Variable, "Selector kind that determines where matching is applied.">]>;
|
|
577
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
578
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
579
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
580
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
581
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
582
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
583
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
584
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
585
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
586
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
587
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
588
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
589
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
590
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
591
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
592
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
593
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
594
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
573
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>, undefined>;
|
|
574
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for tag paths that should be linted.">]>;
|
|
575
|
+
}, undefined>], undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
576
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Variable, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Variable, "Selector kind that determines where matching is applied.">]>;
|
|
577
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
578
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
579
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
580
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
581
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
582
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
583
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
584
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
585
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
586
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
587
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
588
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
589
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
590
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
591
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
592
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
593
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
594
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
595
595
|
type: MatcherType.String;
|
|
596
596
|
} | {
|
|
597
597
|
path?: string | undefined;
|
|
@@ -600,8 +600,8 @@ export declare const SELECTORS_SCHEMA: import("valibot").SchemaWithPipe<readonly
|
|
|
600
600
|
path?: string | undefined;
|
|
601
601
|
type: MatcherType.ObjectValue;
|
|
602
602
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
603
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
604
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
603
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
604
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
605
605
|
type: MatcherType.String;
|
|
606
606
|
} | {
|
|
607
607
|
path?: string | undefined;
|
|
@@ -621,8 +621,8 @@ export declare const SELECTORS_SCHEMA: import("valibot").SchemaWithPipe<readonly
|
|
|
621
621
|
})[];
|
|
622
622
|
type: MatcherType.AnonymousFunctionReturn;
|
|
623
623
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
624
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
625
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
624
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
625
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
626
626
|
callTarget?: number | "all" | "first" | "last" | undefined;
|
|
627
627
|
kind: SelectorKind.Callee;
|
|
628
628
|
match?: ({
|
|
@@ -772,27 +772,27 @@ export declare const SELECTORS_SCHEMA: import("valibot").SchemaWithPipe<readonly
|
|
|
772
772
|
name: string;
|
|
773
773
|
})[], "Flat list of selectors that should get linted.">]>;
|
|
774
774
|
export type Selectors = InferOutput<typeof SELECTORS_SCHEMA>;
|
|
775
|
-
export declare const SELECTORS_OPTION_SCHEMA: import("valibot").StrictObjectSchema<{
|
|
776
|
-
readonly selectors: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
777
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Attribute, undefined>, import("valibot").DescriptionAction<SelectorKind.Attribute, "Selector kind that determines where matching is applied.">]>;
|
|
778
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
779
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
780
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
781
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
782
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
783
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
784
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
785
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
786
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
787
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
788
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
789
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
790
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
791
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
792
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
793
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
794
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
795
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
775
|
+
export declare const SELECTORS_OPTION_SCHEMA: import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
776
|
+
readonly selectors: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
777
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Attribute, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Attribute, "Selector kind that determines where matching is applied.">]>;
|
|
778
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
779
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
780
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
781
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
782
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
783
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
784
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
785
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
786
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
787
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
788
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
789
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
790
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
791
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
792
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
793
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
794
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
795
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
796
796
|
type: MatcherType.String;
|
|
797
797
|
} | {
|
|
798
798
|
path?: string | undefined;
|
|
@@ -801,8 +801,8 @@ export declare const SELECTORS_OPTION_SCHEMA: import("valibot").StrictObjectSche
|
|
|
801
801
|
path?: string | undefined;
|
|
802
802
|
type: MatcherType.ObjectValue;
|
|
803
803
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
804
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
805
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
804
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
805
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
806
806
|
type: MatcherType.String;
|
|
807
807
|
} | {
|
|
808
808
|
path?: string | undefined;
|
|
@@ -822,28 +822,28 @@ export declare const SELECTORS_OPTION_SCHEMA: import("valibot").StrictObjectSche
|
|
|
822
822
|
})[];
|
|
823
823
|
type: MatcherType.AnonymousFunctionReturn;
|
|
824
824
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
825
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
826
|
-
}, undefined>, import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
827
|
-
readonly callTarget: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
828
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Callee, undefined>, import("valibot").DescriptionAction<SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
829
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
830
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
831
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
832
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
833
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
834
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
835
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
836
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
837
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
838
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
839
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
840
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
841
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
842
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
843
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
844
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
845
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
846
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
825
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
826
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
827
|
+
readonly callTarget: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
828
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Callee, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
829
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
830
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
831
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
832
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
833
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
834
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
835
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
836
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
837
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
838
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
839
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
840
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
841
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
842
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
843
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
844
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
845
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
846
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
847
847
|
type: MatcherType.String;
|
|
848
848
|
} | {
|
|
849
849
|
path?: string | undefined;
|
|
@@ -852,8 +852,8 @@ export declare const SELECTORS_OPTION_SCHEMA: import("valibot").StrictObjectSche
|
|
|
852
852
|
path?: string | undefined;
|
|
853
853
|
type: MatcherType.ObjectValue;
|
|
854
854
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
855
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
856
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
855
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
856
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
857
857
|
type: MatcherType.String;
|
|
858
858
|
} | {
|
|
859
859
|
path?: string | undefined;
|
|
@@ -873,31 +873,31 @@ export declare const SELECTORS_OPTION_SCHEMA: import("valibot").StrictObjectSche
|
|
|
873
873
|
})[];
|
|
874
874
|
type: MatcherType.AnonymousFunctionReturn;
|
|
875
875
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
876
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
877
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for callee paths that should be linted.">]>, undefined>;
|
|
878
|
-
readonly targetArgument: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional argument target for call arguments: index, first, last, or all.">]>;
|
|
879
|
-
readonly targetCall: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
880
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
881
|
-
readonly callTarget: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
882
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Callee, undefined>, import("valibot").DescriptionAction<SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
883
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
884
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
885
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
886
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
887
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
888
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
889
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
890
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
891
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
892
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
893
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
894
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
895
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
896
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
897
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
898
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
899
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
900
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
876
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
877
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for callee paths that should be linted.">]>, undefined>;
|
|
878
|
+
readonly targetArgument: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional argument target for call arguments: index, first, last, or all.">]>;
|
|
879
|
+
readonly targetCall: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
880
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
881
|
+
readonly callTarget: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
882
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Callee, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
883
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
884
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
885
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
886
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
887
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
888
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
889
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
890
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
891
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
892
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
893
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
894
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
895
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
896
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
897
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
898
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
899
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
900
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
901
901
|
type: MatcherType.String;
|
|
902
902
|
} | {
|
|
903
903
|
path?: string | undefined;
|
|
@@ -906,8 +906,8 @@ export declare const SELECTORS_OPTION_SCHEMA: import("valibot").StrictObjectSche
|
|
|
906
906
|
path?: string | undefined;
|
|
907
907
|
type: MatcherType.ObjectValue;
|
|
908
908
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
909
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
910
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
909
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
910
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
911
911
|
type: MatcherType.String;
|
|
912
912
|
} | {
|
|
913
913
|
path?: string | undefined;
|
|
@@ -927,30 +927,30 @@ export declare const SELECTORS_OPTION_SCHEMA: import("valibot").StrictObjectSche
|
|
|
927
927
|
})[];
|
|
928
928
|
type: MatcherType.AnonymousFunctionReturn;
|
|
929
929
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
930
|
-
readonly name: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>, undefined>;
|
|
931
|
-
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for callee paths that should be linted.">]>;
|
|
932
|
-
readonly targetArgument: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional argument target for call arguments: index, first, last, or all.">]>;
|
|
933
|
-
readonly targetCall: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").UnionSchema<[import("valibot").LiteralSchema<"all", undefined>, import("valibot").LiteralSchema<"first", undefined>, import("valibot").LiteralSchema<"last", undefined>, import("valibot").NumberSchema<undefined>], undefined>, undefined>, import("valibot").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
934
|
-
}, undefined>], undefined>, import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
935
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Tag, undefined>, import("valibot").DescriptionAction<SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
936
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
937
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
938
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
939
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
940
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
941
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
942
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
943
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
944
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
945
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
946
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
947
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
948
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
949
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
950
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
951
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
952
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
953
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
930
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>, undefined>;
|
|
931
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for callee paths that should be linted.">]>;
|
|
932
|
+
readonly targetArgument: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional argument target for call arguments: index, first, last, or all.">]>;
|
|
933
|
+
readonly targetCall: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"all", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"first", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"last", undefined>, import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number | "all" | "first" | "last" | undefined, "Optional call target for curried callees: index, first, last, or all.">]>;
|
|
934
|
+
}, undefined>], undefined>, import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
935
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Tag, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
936
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
937
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
938
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
939
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
940
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
941
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
942
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
943
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
944
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
945
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
946
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
947
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
948
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
949
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
950
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
951
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
952
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
953
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
954
954
|
type: MatcherType.String;
|
|
955
955
|
} | {
|
|
956
956
|
path?: string | undefined;
|
|
@@ -959,8 +959,8 @@ export declare const SELECTORS_OPTION_SCHEMA: import("valibot").StrictObjectSche
|
|
|
959
959
|
path?: string | undefined;
|
|
960
960
|
type: MatcherType.ObjectValue;
|
|
961
961
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
962
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
963
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
962
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
963
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
964
964
|
type: MatcherType.String;
|
|
965
965
|
} | {
|
|
966
966
|
path?: string | undefined;
|
|
@@ -980,28 +980,28 @@ export declare const SELECTORS_OPTION_SCHEMA: import("valibot").StrictObjectSche
|
|
|
980
980
|
})[];
|
|
981
981
|
type: MatcherType.AnonymousFunctionReturn;
|
|
982
982
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
983
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
984
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for tag paths that should be linted.">]>, undefined>;
|
|
985
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
986
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Tag, undefined>, import("valibot").DescriptionAction<SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
987
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
988
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
989
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
990
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
991
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
992
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
993
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
994
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
995
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
996
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
997
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
998
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
999
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
1000
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
1001
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
1002
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
1003
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
1004
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
983
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
984
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for tag paths that should be linted.">]>, undefined>;
|
|
985
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
986
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Tag, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
987
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
988
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
989
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
990
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
991
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
992
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
993
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
994
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
995
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
996
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
997
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
998
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
999
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
1000
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
1001
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
1002
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
1003
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
1004
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
1005
1005
|
type: MatcherType.String;
|
|
1006
1006
|
} | {
|
|
1007
1007
|
path?: string | undefined;
|
|
@@ -1010,8 +1010,8 @@ export declare const SELECTORS_OPTION_SCHEMA: import("valibot").StrictObjectSche
|
|
|
1010
1010
|
path?: string | undefined;
|
|
1011
1011
|
type: MatcherType.ObjectValue;
|
|
1012
1012
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
1013
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
1014
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
1013
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
1014
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
1015
1015
|
type: MatcherType.String;
|
|
1016
1016
|
} | {
|
|
1017
1017
|
path?: string | undefined;
|
|
@@ -1031,28 +1031,28 @@ export declare const SELECTORS_OPTION_SCHEMA: import("valibot").StrictObjectSche
|
|
|
1031
1031
|
})[];
|
|
1032
1032
|
type: MatcherType.AnonymousFunctionReturn;
|
|
1033
1033
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
1034
|
-
readonly name: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>, undefined>;
|
|
1035
|
-
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for tag paths that should be linted.">]>;
|
|
1036
|
-
}, undefined>], undefined>, import("valibot").StrictObjectSchema<{
|
|
1037
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<SelectorKind.Variable, undefined>, import("valibot").DescriptionAction<SelectorKind.Variable, "Selector kind that determines where matching is applied.">]>;
|
|
1038
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
1039
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
1040
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
1041
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
1042
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
1043
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
1044
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
1045
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
1046
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
1047
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
1048
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.String, undefined>, import("valibot").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
1049
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
1050
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
1051
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
1052
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
1053
|
-
readonly path: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
1054
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
1055
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
1034
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>, undefined>;
|
|
1035
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for tag paths that should be linted.">]>;
|
|
1036
|
+
}, undefined>], undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
1037
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<SelectorKind.Variable, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<SelectorKind.Variable, "Selector kind that determines where matching is applied.">]>;
|
|
1038
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
1039
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
1040
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
1041
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
1042
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
1043
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
1044
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
1045
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
1046
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
1047
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").ArraySchema<import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
1048
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.String, "Matcher type that will be applied.">]>;
|
|
1049
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
1050
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
1051
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
1052
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
1053
|
+
readonly path: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression that filters the object value and matches the content for further processing in a group.">]>, undefined>;
|
|
1054
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
1055
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
1056
1056
|
type: MatcherType.String;
|
|
1057
1057
|
} | {
|
|
1058
1058
|
path?: string | undefined;
|
|
@@ -1061,8 +1061,8 @@ export declare const SELECTORS_OPTION_SCHEMA: import("valibot").StrictObjectSche
|
|
|
1061
1061
|
path?: string | undefined;
|
|
1062
1062
|
type: MatcherType.ObjectValue;
|
|
1063
1063
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
1064
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
1065
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
1064
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
1065
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
1066
1066
|
type: MatcherType.String;
|
|
1067
1067
|
} | {
|
|
1068
1068
|
path?: string | undefined;
|
|
@@ -1082,8 +1082,8 @@ export declare const SELECTORS_OPTION_SCHEMA: import("valibot").StrictObjectSche
|
|
|
1082
1082
|
})[];
|
|
1083
1083
|
type: MatcherType.AnonymousFunctionReturn;
|
|
1084
1084
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
1085
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
1086
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
1085
|
+
readonly name: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
1086
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
1087
1087
|
callTarget?: number | "all" | "first" | "last" | undefined;
|
|
1088
1088
|
kind: SelectorKind.Callee;
|
|
1089
1089
|
match?: ({
|