eslint-plugin-better-tailwindcss 4.5.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 +31 -2863
- 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/css.js +29 -1
- package/lib/parsers/css.js.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 +4 -0
- package/lib/rules/enforce-canonical-classes.js.map +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-class-order.js +1 -14
- package/lib/rules/enforce-consistent-class-order.js.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-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 +3 -204
- package/lib/rules/enforce-logical-properties.d.ts.map +1 -1
- package/lib/rules/enforce-logical-properties.js +10 -0
- package/lib/rules/enforce-logical-properties.js.map +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-unnecessary-whitespace.d.ts +2 -203
- package/lib/rules/no-unnecessary-whitespace.d.ts.map +1 -1
- package/lib/types/ast.d.ts +1 -0
- package/lib/types/ast.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 +19 -12
- 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/package.json +39 -35
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import type { InferOutput } from "valibot";
|
|
2
|
-
export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
3
|
-
readonly cwd: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "The working directory to resolve tailwindcss and the config from. Useful in monorepo setups.">]>, undefined>;
|
|
4
|
-
readonly rootFontSize: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").DescriptionAction<number, "The root font size in pixels.">]>, undefined>;
|
|
5
|
-
readonly detectComponentClasses: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").BooleanSchema<undefined>, import("valibot").DescriptionAction<boolean, "Whether to automatically detect custom component classes from the tailwindcss config.">]>, false>;
|
|
6
|
-
readonly tsconfig: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "The path to the tsconfig file. Is used to resolve path aliases in the tsconfig.">]>, undefined>;
|
|
7
|
-
readonly tailwindConfig: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "The path to the tailwind config file. If not specified, the plugin will try to find it automatically or falls back to the default configuration.">]>, undefined>;
|
|
8
|
-
readonly messageStyle: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").UnionSchema<[import("valibot").LiteralSchema<"visual", undefined>, import("valibot").LiteralSchema<"compact", undefined>, import("valibot").LiteralSchema<"raw", undefined>], undefined>, import("valibot").DescriptionAction<"visual" | "compact" | "raw", "How linting messages are displayed.">]>, "visual" | "compact">;
|
|
9
|
-
readonly entryPoint: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "The path to the css entry point of the project. If not specified, the plugin will fall back to the default tailwind classes.">]>, undefined>;
|
|
10
|
-
readonly tags: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").TupleSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Template literal tag for which children get linted if matched.">]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
11
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
12
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
13
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
14
|
-
readonly pathPattern: 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>;
|
|
15
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
16
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
17
|
-
readonly pathPattern: 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>;
|
|
18
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
2
|
+
export declare const COMMON_OPTIONS: import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
3
|
+
readonly cwd: 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, "The working directory to resolve tailwindcss and the config from. Useful in monorepo setups.">]>, undefined>;
|
|
4
|
+
readonly rootFontSize: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").NumberSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<number, "The root font size in pixels.">]>, undefined>;
|
|
5
|
+
readonly detectComponentClasses: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").BooleanSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<boolean, "Whether to automatically detect custom component classes from the tailwindcss config.">]>, false>;
|
|
6
|
+
readonly tsconfig: 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, "The path to the tsconfig file. Is used to resolve path aliases in the tsconfig.">]>, undefined>;
|
|
7
|
+
readonly tailwindConfig: 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, "The path to the tailwind config file. If not specified, the plugin will try to find it automatically or falls back to the default configuration.">]>, undefined>;
|
|
8
|
+
readonly messageStyle: import("node_modules/valibot/dist/index.mjs").OptionalSchema<import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").LiteralSchema<"visual", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"compact", undefined>, import("node_modules/valibot/dist/index.mjs").LiteralSchema<"raw", undefined>], undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<"visual" | "compact" | "raw", "How linting messages are displayed.">]>, "visual" | "compact">;
|
|
9
|
+
readonly entryPoint: 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, "The path to the css entry point of the project. If not specified, the plugin will fall back to the default tailwind classes.">]>, undefined>;
|
|
10
|
+
readonly tags: 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").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").TupleSchema<[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, "Template literal tag for which children get linted if matched.">]>, 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<{
|
|
11
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
12
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
13
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
14
|
+
readonly pathPattern: 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>;
|
|
15
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
16
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
17
|
+
readonly pathPattern: 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>;
|
|
18
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
19
19
|
match: import("../types/rule.js").MatcherType.String;
|
|
20
20
|
} | {
|
|
21
21
|
match: import("../types/rule.js").MatcherType.ObjectKey;
|
|
@@ -23,7 +23,7 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
23
23
|
} | {
|
|
24
24
|
match: import("../types/rule.js").MatcherType.ObjectValue;
|
|
25
25
|
pathPattern?: string | undefined;
|
|
26
|
-
})[], "List of matchers that will be applied.">]>], undefined>, import("valibot").DescriptionAction<[string, ({
|
|
26
|
+
})[], "List of matchers that will be applied.">]>], undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<[string, ({
|
|
27
27
|
match: import("../types/rule.js").MatcherType.String;
|
|
28
28
|
} | {
|
|
29
29
|
match: import("../types/rule.js").MatcherType.ObjectKey;
|
|
@@ -31,7 +31,7 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
31
31
|
} | {
|
|
32
32
|
match: import("../types/rule.js").MatcherType.ObjectValue;
|
|
33
33
|
pathPattern?: string | undefined;
|
|
34
|
-
})[]], "List of matchers that will automatically be matched.">]>, import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Template literal tag that should get linted.">]>], undefined>, undefined>, import("valibot").DescriptionAction<(string | [string, ({
|
|
34
|
+
})[]], "List of matchers that will automatically be matched.">]>, 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, "Template literal tag that should get linted.">]>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<(string | [string, ({
|
|
35
35
|
match: import("../types/rule.js").MatcherType.String;
|
|
36
36
|
} | {
|
|
37
37
|
match: import("../types/rule.js").MatcherType.ObjectKey;
|
|
@@ -40,15 +40,15 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
40
40
|
match: import("../types/rule.js").MatcherType.ObjectValue;
|
|
41
41
|
pathPattern?: string | undefined;
|
|
42
42
|
})[]])[], "List of template literal tags that should get linted.">]>, undefined>;
|
|
43
|
-
readonly variables: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").TupleSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Variable name for which children get linted if matched.">]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
44
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
45
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
46
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
47
|
-
readonly pathPattern: 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>;
|
|
48
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
49
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
50
|
-
readonly pathPattern: 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>;
|
|
51
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
43
|
+
readonly variables: 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").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").TupleSchema<[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, "Variable name for which children get linted if matched.">]>, 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<{
|
|
44
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
45
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
46
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
47
|
+
readonly pathPattern: 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>;
|
|
48
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
49
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
50
|
+
readonly pathPattern: 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>;
|
|
51
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
52
52
|
match: import("../types/rule.js").MatcherType.String;
|
|
53
53
|
} | {
|
|
54
54
|
match: import("../types/rule.js").MatcherType.ObjectKey;
|
|
@@ -56,7 +56,7 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
56
56
|
} | {
|
|
57
57
|
match: import("../types/rule.js").MatcherType.ObjectValue;
|
|
58
58
|
pathPattern?: string | undefined;
|
|
59
|
-
})[], "List of matchers that will be applied.">]>], undefined>, import("valibot").DescriptionAction<[string, ({
|
|
59
|
+
})[], "List of matchers that will be applied.">]>], undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<[string, ({
|
|
60
60
|
match: import("../types/rule.js").MatcherType.String;
|
|
61
61
|
} | {
|
|
62
62
|
match: import("../types/rule.js").MatcherType.ObjectKey;
|
|
@@ -64,7 +64,7 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
64
64
|
} | {
|
|
65
65
|
match: import("../types/rule.js").MatcherType.ObjectValue;
|
|
66
66
|
pathPattern?: string | undefined;
|
|
67
|
-
})[]], "List of matchers that will automatically be matched.">]>, import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Variable name for which children get linted.">]>], undefined>, undefined>, import("valibot").DescriptionAction<(string | [string, ({
|
|
67
|
+
})[]], "List of matchers that will automatically be matched.">]>, 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, "Variable name for which children get linted.">]>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<(string | [string, ({
|
|
68
68
|
match: import("../types/rule.js").MatcherType.String;
|
|
69
69
|
} | {
|
|
70
70
|
match: import("../types/rule.js").MatcherType.ObjectKey;
|
|
@@ -73,15 +73,15 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
73
73
|
match: import("../types/rule.js").MatcherType.ObjectValue;
|
|
74
74
|
pathPattern?: string | undefined;
|
|
75
75
|
})[]])[], "List of variable names which values should get linted.">]>, undefined>;
|
|
76
|
-
readonly attributes: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Attribute name that for which children get linted.">]>, import("valibot").SchemaWithPipe<readonly [import("valibot").TupleSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Attribute name for which children get linted if matched.">]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
77
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
78
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
79
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
80
|
-
readonly pathPattern: 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>;
|
|
81
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
82
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
83
|
-
readonly pathPattern: 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>;
|
|
84
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
76
|
+
readonly attributes: 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").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").StringSchema<undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<string, "Attribute name that for which children get linted.">]>, import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").TupleSchema<[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, "Attribute name for which children get linted if matched.">]>, 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<{
|
|
77
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
78
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
79
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
80
|
+
readonly pathPattern: 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>;
|
|
81
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
82
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
83
|
+
readonly pathPattern: 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>;
|
|
84
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
85
85
|
match: import("../types/rule.js").MatcherType.String;
|
|
86
86
|
} | {
|
|
87
87
|
match: import("../types/rule.js").MatcherType.ObjectKey;
|
|
@@ -89,7 +89,7 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
89
89
|
} | {
|
|
90
90
|
match: import("../types/rule.js").MatcherType.ObjectValue;
|
|
91
91
|
pathPattern?: string | undefined;
|
|
92
|
-
})[], "List of matchers that will be applied.">]>], undefined>, import("valibot").DescriptionAction<[string, ({
|
|
92
|
+
})[], "List of matchers that will be applied.">]>], undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<[string, ({
|
|
93
93
|
match: import("../types/rule.js").MatcherType.String;
|
|
94
94
|
} | {
|
|
95
95
|
match: import("../types/rule.js").MatcherType.ObjectKey;
|
|
@@ -97,7 +97,7 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
97
97
|
} | {
|
|
98
98
|
match: import("../types/rule.js").MatcherType.ObjectValue;
|
|
99
99
|
pathPattern?: string | undefined;
|
|
100
|
-
})[]], "List of matchers that will automatically be matched.">]>], undefined>, undefined>, import("valibot").DescriptionAction<(string | [string, ({
|
|
100
|
+
})[]], "List of matchers that will automatically be matched.">]>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<(string | [string, ({
|
|
101
101
|
match: import("../types/rule.js").MatcherType.String;
|
|
102
102
|
} | {
|
|
103
103
|
match: import("../types/rule.js").MatcherType.ObjectKey;
|
|
@@ -106,15 +106,15 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
106
106
|
match: import("../types/rule.js").MatcherType.ObjectValue;
|
|
107
107
|
pathPattern?: string | undefined;
|
|
108
108
|
})[]])[], "List of attribute names that should get linted.">]>, undefined>;
|
|
109
|
-
readonly callees: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").TupleSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Callee name for which children get linted if matched.">]>, import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
110
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
111
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
112
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
113
|
-
readonly pathPattern: 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
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
115
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
116
|
-
readonly pathPattern: 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
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
109
|
+
readonly callees: 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").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").TupleSchema<[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, "Callee name for which children get linted if matched.">]>, 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<{
|
|
110
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
111
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
112
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
113
|
+
readonly pathPattern: 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
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
115
|
+
readonly match: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
116
|
+
readonly pathPattern: 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
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
118
118
|
match: import("../types/rule.js").MatcherType.String;
|
|
119
119
|
} | {
|
|
120
120
|
match: import("../types/rule.js").MatcherType.ObjectKey;
|
|
@@ -122,7 +122,7 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
122
122
|
} | {
|
|
123
123
|
match: import("../types/rule.js").MatcherType.ObjectValue;
|
|
124
124
|
pathPattern?: string | undefined;
|
|
125
|
-
})[], "List of matchers that will be applied.">]>], undefined>, import("valibot").DescriptionAction<[string, ({
|
|
125
|
+
})[], "List of matchers that will be applied.">]>], undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<[string, ({
|
|
126
126
|
match: import("../types/rule.js").MatcherType.String;
|
|
127
127
|
} | {
|
|
128
128
|
match: import("../types/rule.js").MatcherType.ObjectKey;
|
|
@@ -130,7 +130,7 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
130
130
|
} | {
|
|
131
131
|
match: import("../types/rule.js").MatcherType.ObjectValue;
|
|
132
132
|
pathPattern?: string | undefined;
|
|
133
|
-
})[]], "List of matchers that will automatically be matched.">]>, import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Callee name for which children get linted.">]>], undefined>, undefined>, import("valibot").DescriptionAction<(string | [string, ({
|
|
133
|
+
})[]], "List of matchers that will automatically be matched.">]>, 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, "Callee name for which children get linted.">]>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<(string | [string, ({
|
|
134
134
|
match: import("../types/rule.js").MatcherType.String;
|
|
135
135
|
} | {
|
|
136
136
|
match: import("../types/rule.js").MatcherType.ObjectKey;
|
|
@@ -139,26 +139,26 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
139
139
|
match: import("../types/rule.js").MatcherType.ObjectValue;
|
|
140
140
|
pathPattern?: string | undefined;
|
|
141
141
|
})[]])[], "List of function names which arguments should get linted.">]>, undefined>;
|
|
142
|
-
readonly selectors: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
143
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").SelectorKind.Attribute, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").SelectorKind.Attribute, "Selector kind that determines where matching is applied.">]>;
|
|
144
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
145
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
146
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
147
|
-
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>;
|
|
148
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
149
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
150
|
-
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>;
|
|
151
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
152
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
153
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
154
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
155
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
156
|
-
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>;
|
|
157
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
158
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
159
|
-
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>;
|
|
160
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
161
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
142
|
+
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<{
|
|
143
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").SelectorKind.Attribute, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").SelectorKind.Attribute, "Selector kind that determines where matching is applied.">]>;
|
|
144
|
+
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<{
|
|
145
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
146
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
147
|
+
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>;
|
|
148
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
149
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
150
|
+
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>;
|
|
151
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
152
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
153
|
+
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<{
|
|
154
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
155
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
156
|
+
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>;
|
|
157
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
158
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
159
|
+
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>;
|
|
160
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
161
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
162
162
|
type: import("../types/rule.js").MatcherType.String;
|
|
163
163
|
} | {
|
|
164
164
|
path?: string | undefined;
|
|
@@ -167,8 +167,8 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
167
167
|
path?: string | undefined;
|
|
168
168
|
type: import("../types/rule.js").MatcherType.ObjectValue;
|
|
169
169
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
170
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
171
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
170
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
171
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
172
172
|
type: import("../types/rule.js").MatcherType.String;
|
|
173
173
|
} | {
|
|
174
174
|
path?: string | undefined;
|
|
@@ -188,28 +188,28 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
188
188
|
})[];
|
|
189
189
|
type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
|
|
190
190
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
191
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
192
|
-
}, undefined>, import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
193
|
-
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.">]>;
|
|
194
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").SelectorKind.Callee, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
195
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
196
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
197
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
198
|
-
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>;
|
|
199
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
200
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
201
|
-
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>;
|
|
202
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
203
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
204
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
205
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
206
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
207
|
-
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>;
|
|
208
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
209
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
210
|
-
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>;
|
|
211
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
212
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
191
|
+
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.">]>;
|
|
192
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
193
|
+
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.">]>;
|
|
194
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").SelectorKind.Callee, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
195
|
+
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<{
|
|
196
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
197
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
198
|
+
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>;
|
|
199
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
200
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
201
|
+
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>;
|
|
202
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
203
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
204
|
+
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<{
|
|
205
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
206
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
207
|
+
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>;
|
|
208
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
209
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
210
|
+
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>;
|
|
211
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
212
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
213
213
|
type: import("../types/rule.js").MatcherType.String;
|
|
214
214
|
} | {
|
|
215
215
|
path?: string | undefined;
|
|
@@ -218,8 +218,8 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
218
218
|
path?: string | undefined;
|
|
219
219
|
type: import("../types/rule.js").MatcherType.ObjectValue;
|
|
220
220
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
221
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
222
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
221
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
222
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
223
223
|
type: import("../types/rule.js").MatcherType.String;
|
|
224
224
|
} | {
|
|
225
225
|
path?: string | undefined;
|
|
@@ -239,31 +239,31 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
239
239
|
})[];
|
|
240
240
|
type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
|
|
241
241
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
242
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
243
|
-
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>;
|
|
244
|
-
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.">]>;
|
|
245
|
-
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.">]>;
|
|
246
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
247
|
-
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.">]>;
|
|
248
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").SelectorKind.Callee, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
249
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
250
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
251
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
252
|
-
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>;
|
|
253
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
254
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
255
|
-
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>;
|
|
256
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
257
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
258
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
259
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
260
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
261
|
-
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>;
|
|
262
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
263
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
264
|
-
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>;
|
|
265
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
266
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
242
|
+
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.">]>;
|
|
243
|
+
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>;
|
|
244
|
+
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.">]>;
|
|
245
|
+
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.">]>;
|
|
246
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
247
|
+
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.">]>;
|
|
248
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").SelectorKind.Callee, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").SelectorKind.Callee, "Selector kind that determines where matching is applied.">]>;
|
|
249
|
+
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<{
|
|
250
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
251
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
252
|
+
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>;
|
|
253
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
254
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
255
|
+
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>;
|
|
256
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
257
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
258
|
+
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<{
|
|
259
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
260
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
261
|
+
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>;
|
|
262
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
263
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
264
|
+
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>;
|
|
265
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
266
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
267
267
|
type: import("../types/rule.js").MatcherType.String;
|
|
268
268
|
} | {
|
|
269
269
|
path?: string | undefined;
|
|
@@ -272,8 +272,8 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
272
272
|
path?: string | undefined;
|
|
273
273
|
type: import("../types/rule.js").MatcherType.ObjectValue;
|
|
274
274
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
275
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
276
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
275
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
276
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
277
277
|
type: import("../types/rule.js").MatcherType.String;
|
|
278
278
|
} | {
|
|
279
279
|
path?: string | undefined;
|
|
@@ -293,30 +293,30 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
293
293
|
})[];
|
|
294
294
|
type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
|
|
295
295
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
296
|
-
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>;
|
|
297
|
-
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for callee paths that should be linted.">]>;
|
|
298
|
-
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.">]>;
|
|
299
|
-
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.">]>;
|
|
300
|
-
}, undefined>], undefined>, import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
301
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").SelectorKind.Tag, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
302
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
303
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
304
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
305
|
-
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>;
|
|
306
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
307
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
308
|
-
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>;
|
|
309
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
310
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
311
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
312
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
313
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
314
|
-
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>;
|
|
315
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
316
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
317
|
-
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>;
|
|
318
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
319
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
296
|
+
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>;
|
|
297
|
+
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.">]>;
|
|
298
|
+
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.">]>;
|
|
299
|
+
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.">]>;
|
|
300
|
+
}, undefined>], undefined>, import("node_modules/valibot/dist/index.mjs").UnionSchema<[import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
301
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").SelectorKind.Tag, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
302
|
+
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<{
|
|
303
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
304
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
305
|
+
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>;
|
|
306
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
307
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
308
|
+
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>;
|
|
309
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
310
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
311
|
+
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<{
|
|
312
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
313
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
314
|
+
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>;
|
|
315
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
316
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
317
|
+
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>;
|
|
318
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
319
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
320
320
|
type: import("../types/rule.js").MatcherType.String;
|
|
321
321
|
} | {
|
|
322
322
|
path?: string | undefined;
|
|
@@ -325,8 +325,8 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
325
325
|
path?: string | undefined;
|
|
326
326
|
type: import("../types/rule.js").MatcherType.ObjectValue;
|
|
327
327
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
328
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
329
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
328
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
329
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
330
330
|
type: import("../types/rule.js").MatcherType.String;
|
|
331
331
|
} | {
|
|
332
332
|
path?: string | undefined;
|
|
@@ -346,28 +346,28 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
346
346
|
})[];
|
|
347
347
|
type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
|
|
348
348
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
349
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
350
|
-
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>;
|
|
351
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
352
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").SelectorKind.Tag, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
353
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
354
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
355
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
356
|
-
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>;
|
|
357
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
358
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
359
|
-
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>;
|
|
360
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
361
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
362
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
363
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
364
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
365
|
-
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>;
|
|
366
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
367
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
368
|
-
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>;
|
|
369
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
370
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
349
|
+
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.">]>;
|
|
350
|
+
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>;
|
|
351
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
352
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").SelectorKind.Tag, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").SelectorKind.Tag, "Selector kind that determines where matching is applied.">]>;
|
|
353
|
+
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<{
|
|
354
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
355
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
356
|
+
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>;
|
|
357
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
358
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
359
|
+
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>;
|
|
360
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
361
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
362
|
+
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<{
|
|
363
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
364
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
365
|
+
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>;
|
|
366
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
367
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
368
|
+
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>;
|
|
369
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
370
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
371
371
|
type: import("../types/rule.js").MatcherType.String;
|
|
372
372
|
} | {
|
|
373
373
|
path?: string | undefined;
|
|
@@ -376,8 +376,8 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
376
376
|
path?: string | undefined;
|
|
377
377
|
type: import("../types/rule.js").MatcherType.ObjectValue;
|
|
378
378
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
379
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
380
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
379
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
380
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
381
381
|
type: import("../types/rule.js").MatcherType.String;
|
|
382
382
|
} | {
|
|
383
383
|
path?: string | undefined;
|
|
@@ -397,28 +397,28 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
397
397
|
})[];
|
|
398
398
|
type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
|
|
399
399
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
400
|
-
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>;
|
|
401
|
-
readonly path: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for tag paths that should be linted.">]>;
|
|
402
|
-
}, undefined>], undefined>, import("valibot").StrictObjectSchema<{
|
|
403
|
-
readonly kind: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").SelectorKind.Variable, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").SelectorKind.Variable, "Selector kind that determines where matching is applied.">]>;
|
|
404
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
405
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
406
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
407
|
-
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>;
|
|
408
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
409
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
410
|
-
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>;
|
|
411
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
412
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
413
|
-
readonly match: import("valibot").SchemaWithPipe<readonly [import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").StrictObjectSchema<{
|
|
414
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
415
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
416
|
-
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>;
|
|
417
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
418
|
-
}, undefined>, import("valibot").StrictObjectSchema<{
|
|
419
|
-
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>;
|
|
420
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
421
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
400
|
+
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>;
|
|
401
|
+
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.">]>;
|
|
402
|
+
}, undefined>], undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
403
|
+
readonly kind: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").SelectorKind.Variable, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").SelectorKind.Variable, "Selector kind that determines where matching is applied.">]>;
|
|
404
|
+
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<{
|
|
405
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
406
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
407
|
+
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>;
|
|
408
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
409
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
410
|
+
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>;
|
|
411
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
412
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
413
|
+
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<{
|
|
414
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.String, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.String, "Matcher type that will be applied.">]>;
|
|
415
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
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 that filters the object key and matches the content for further processing in a group.">]>, undefined>;
|
|
417
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectKey, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectKey, "Matcher type that will be applied.">]>;
|
|
418
|
+
}, undefined>, import("node_modules/valibot/dist/index.mjs").StrictObjectSchema<{
|
|
419
|
+
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>;
|
|
420
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.ObjectValue, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.ObjectValue, "Matcher type that will be applied.">]>;
|
|
421
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
422
422
|
type: import("../types/rule.js").MatcherType.String;
|
|
423
423
|
} | {
|
|
424
424
|
path?: string | undefined;
|
|
@@ -427,8 +427,8 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
427
427
|
path?: string | undefined;
|
|
428
428
|
type: import("../types/rule.js").MatcherType.ObjectValue;
|
|
429
429
|
})[], "List of nested matchers that target the return value of anonymous functions.">]>;
|
|
430
|
-
readonly type: import("valibot").SchemaWithPipe<readonly [import("valibot").LiteralSchema<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, undefined>, import("valibot").DescriptionAction<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
431
|
-
}, undefined>], undefined>, undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
430
|
+
readonly type: import("node_modules/valibot/dist/index.mjs").SchemaWithPipe<readonly [import("node_modules/valibot/dist/index.mjs").LiteralSchema<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<import("../types/rule.js").MatcherType.AnonymousFunctionReturn, "Matcher type that will be applied.">]>;
|
|
431
|
+
}, undefined>], undefined>, undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
432
432
|
type: import("../types/rule.js").MatcherType.String;
|
|
433
433
|
} | {
|
|
434
434
|
path?: string | undefined;
|
|
@@ -448,8 +448,8 @@ export declare const COMMON_OPTIONS: import("valibot").StrictObjectSchema<{
|
|
|
448
448
|
})[];
|
|
449
449
|
type: import("../types/rule.js").MatcherType.AnonymousFunctionReturn;
|
|
450
450
|
})[] | undefined, "Optional list of matchers that will be applied.">]>;
|
|
451
|
-
readonly name: import("valibot").SchemaWithPipe<readonly [import("valibot").StringSchema<undefined>, import("valibot").DescriptionAction<string, "Regular expression for names that should be linted.">]>;
|
|
452
|
-
}, undefined>], undefined>, undefined>, import("valibot").DescriptionAction<({
|
|
451
|
+
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.">]>;
|
|
452
|
+
}, undefined>], undefined>, undefined>, import("node_modules/valibot/dist/index.mjs").DescriptionAction<({
|
|
453
453
|
callTarget?: number | "all" | "first" | "last" | undefined;
|
|
454
454
|
kind: import("../types/rule.js").SelectorKind.Callee;
|
|
455
455
|
match?: ({
|