@eslint-react/kit
Advanced tools
Comparing version
import * as typescript from 'typescript'; | ||
import * as tseslint from '@typescript-eslint/utils/ts-eslint'; | ||
import { ReportDescriptor } from '@typescript-eslint/utils/ts-eslint'; | ||
import * as z from '@zod/mini'; | ||
import * as z from 'zod'; | ||
import { _ } from '@eslint-react/eff'; | ||
@@ -83,10 +83,24 @@ import { TSESTree } from '@typescript-eslint/utils'; | ||
*/ | ||
declare const LanguagePreferenceSchema: z.ZodMiniObject<{ | ||
indentStyle: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"tab">, z.ZodMiniLiteral<"space">]>>; | ||
indentWidth: z.ZodMiniOptional<z.ZodMiniNumber<number>>; | ||
quoteStyle: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"single">, z.ZodMiniLiteral<"double">]>>; | ||
semicolons: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"always">, z.ZodMiniLiteral<"asNeeded">]>>; | ||
trailingCommas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"all">, z.ZodMiniLiteral<"es5">, z.ZodMiniLiteral<"none">]>>; | ||
jsxQuoteStyle: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"single">, z.ZodMiniLiteral<"double">]>>; | ||
}, {}, {}>; | ||
declare const LanguagePreferenceSchema: z.ZodObject<{ | ||
indentStyle: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"tab">, z.ZodLiteral<"space">]>>; | ||
indentWidth: z.ZodOptional<z.ZodNumber>; | ||
quoteStyle: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"single">, z.ZodLiteral<"double">]>>; | ||
semicolons: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"always">, z.ZodLiteral<"asNeeded">]>>; | ||
trailingCommas: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"all">, z.ZodLiteral<"es5">, z.ZodLiteral<"none">]>>; | ||
jsxQuoteStyle: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"single">, z.ZodLiteral<"double">]>>; | ||
}, "strip", z.ZodTypeAny, { | ||
indentStyle?: "tab" | "space" | undefined; | ||
indentWidth?: number | undefined; | ||
quoteStyle?: "single" | "double" | undefined; | ||
semicolons?: "always" | "asNeeded" | undefined; | ||
trailingCommas?: "all" | "es5" | "none" | undefined; | ||
jsxQuoteStyle?: "single" | "double" | undefined; | ||
}, { | ||
indentStyle?: "tab" | "space" | undefined; | ||
indentWidth?: number | undefined; | ||
quoteStyle?: "single" | "double" | undefined; | ||
semicolons?: "always" | "asNeeded" | undefined; | ||
trailingCommas?: "all" | "es5" | "none" | undefined; | ||
jsxQuoteStyle?: "single" | "double" | undefined; | ||
}>; | ||
@@ -93,0 +107,0 @@ /** |
'use strict'; | ||
var eff = require('@eslint-react/eff'); | ||
var z = require('@zod/mini'); | ||
var z = require('zod'); | ||
@@ -6,0 +6,0 @@ function _interopNamespace(e) { |
{ | ||
"name": "@eslint-react/kit", | ||
"version": "1.50.0-beta.3", | ||
"version": "1.50.0-beta.5", | ||
"description": "ESLint React's plugin kit for building plugins and rules.", | ||
@@ -39,5 +39,5 @@ "homepage": "https://github.com/Rel1cx/eslint-react", | ||
"@typescript-eslint/utils": "^8.32.1", | ||
"@zod/mini": "^4.0.0-beta.20250505T195954", | ||
"ts-pattern": "^5.7.1", | ||
"@eslint-react/eff": "1.50.0-beta.3" | ||
"zod": "^3.25.28", | ||
"@eslint-react/eff": "1.50.0-beta.5" | ||
}, | ||
@@ -44,0 +44,0 @@ "devDependencies": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
41064
2.22%721
1.98%+ Added
+ Added
+ Added
- Removed
- Removed
- Removed