@eslint-react/shared 5.0.2-next.0 → 5.0.2-next.3
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/dist/index.d.ts +2 -10
- package/dist/index.js +1 -15
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from "zod/v4";
|
|
2
2
|
import * as tseslint from "@typescript-eslint/utils/ts-eslint";
|
|
3
|
-
import {
|
|
3
|
+
import { ReportFixFunction, RuleFix, RuleFixer, RuleListener, RuleListener as RuleListener$1 } from "@typescript-eslint/utils/ts-eslint";
|
|
4
4
|
|
|
5
5
|
//#region src/define-rule-listener.d.ts
|
|
6
6
|
/**
|
|
@@ -161,14 +161,6 @@ interface SettingsConfig {
|
|
|
161
161
|
[key: string]: unknown;
|
|
162
162
|
}
|
|
163
163
|
//#endregion
|
|
164
|
-
//#region src/report.d.ts
|
|
165
|
-
/**
|
|
166
|
-
* Creates a report function for the given rule context.
|
|
167
|
-
* @param context The ESLint rule context.
|
|
168
|
-
* @returns A function that can be used to report violations.
|
|
169
|
-
*/
|
|
170
|
-
declare function report(context: RuleContext): (descriptor?: null | ReportDescriptor<string>) => void;
|
|
171
|
-
//#endregion
|
|
172
164
|
//#region src/settings.d.ts
|
|
173
165
|
/**
|
|
174
166
|
* @internal
|
|
@@ -247,4 +239,4 @@ declare module "@typescript-eslint/utils/ts-eslint" {
|
|
|
247
239
|
}
|
|
248
240
|
}
|
|
249
241
|
//#endregion
|
|
250
|
-
export { DEFAULT_ESLINT_REACT_SETTINGS, DEFAULT_ESLINT_SETTINGS, ESLintReactSettings, ESLintReactSettingsNormalized, ESLintReactSettingsSchema, ESLintSettings, ESLintSettingsSchema, RE_ANNOTATION_JSX, RE_ANNOTATION_JSX_FRAG, RE_ANNOTATION_JSX_IMPORT_SOURCE, RE_ANNOTATION_JSX_RUNTIME, RE_CAMEL_CASE, RE_COMPONENT_NAME, RE_COMPONENT_NAME_LOOSE, RE_CONSTANT_CASE, RE_HOOK_NAME, RE_HTML_TAG, RE_JAVASCRIPT_PROTOCOL, RE_JS_EXT, RE_JS_IDENTIFIER, RE_KEBAB_CASE, RE_PASCAL_CASE, RE_REGEXP_STR, RE_SNAKE_CASE, RE_TS_EXT, RegExpLike, type ReportFixFunction, RuleConfig, RuleContext, RuleFeature, type RuleFix, type RuleFixer, type RuleListener, RuleSuggest, SettingsConfig, Severity, SeverityLevel, SeverityName, decodeESLintSettings, decodeSettings, defineRuleListener, getReactVersion, getSettingsFromContext, isESLintReactSettings, isESLintSettings, isRegExp, normalizeSettings,
|
|
242
|
+
export { DEFAULT_ESLINT_REACT_SETTINGS, DEFAULT_ESLINT_SETTINGS, ESLintReactSettings, ESLintReactSettingsNormalized, ESLintReactSettingsSchema, ESLintSettings, ESLintSettingsSchema, RE_ANNOTATION_JSX, RE_ANNOTATION_JSX_FRAG, RE_ANNOTATION_JSX_IMPORT_SOURCE, RE_ANNOTATION_JSX_RUNTIME, RE_CAMEL_CASE, RE_COMPONENT_NAME, RE_COMPONENT_NAME_LOOSE, RE_CONSTANT_CASE, RE_HOOK_NAME, RE_HTML_TAG, RE_JAVASCRIPT_PROTOCOL, RE_JS_EXT, RE_JS_IDENTIFIER, RE_KEBAB_CASE, RE_PASCAL_CASE, RE_REGEXP_STR, RE_SNAKE_CASE, RE_TS_EXT, RegExpLike, type ReportFixFunction, RuleConfig, RuleContext, RuleFeature, type RuleFix, type RuleFixer, type RuleListener, RuleSuggest, SettingsConfig, Severity, SeverityLevel, SeverityName, decodeESLintSettings, decodeSettings, defineRuleListener, getReactVersion, getSettingsFromContext, isESLintReactSettings, isESLintSettings, isRegExp, normalizeSettings, toRegExp };
|
package/dist/index.js
CHANGED
|
@@ -265,20 +265,6 @@ function isRegExp(string) {
|
|
|
265
265
|
return RE_REGEXP_STR.test(string);
|
|
266
266
|
}
|
|
267
267
|
|
|
268
|
-
//#endregion
|
|
269
|
-
//#region src/report.ts
|
|
270
|
-
/**
|
|
271
|
-
* Creates a report function for the given rule context.
|
|
272
|
-
* @param context The ESLint rule context.
|
|
273
|
-
* @returns A function that can be used to report violations.
|
|
274
|
-
*/
|
|
275
|
-
function report(context) {
|
|
276
|
-
return (descriptor) => {
|
|
277
|
-
if (descriptor == null) return;
|
|
278
|
-
return context.report(descriptor);
|
|
279
|
-
};
|
|
280
|
-
}
|
|
281
|
-
|
|
282
268
|
//#endregion
|
|
283
269
|
//#region src/settings.ts
|
|
284
270
|
const _require = module.createRequire(process.cwd() + path.sep);
|
|
@@ -352,4 +338,4 @@ function getSettingsFromContext(context) {
|
|
|
352
338
|
}
|
|
353
339
|
|
|
354
340
|
//#endregion
|
|
355
|
-
export { DEFAULT_ESLINT_REACT_SETTINGS, DEFAULT_ESLINT_SETTINGS, ESLintReactSettingsSchema, ESLintSettingsSchema, RE_ANNOTATION_JSX, RE_ANNOTATION_JSX_FRAG, RE_ANNOTATION_JSX_IMPORT_SOURCE, RE_ANNOTATION_JSX_RUNTIME, RE_CAMEL_CASE, RE_COMPONENT_NAME, RE_COMPONENT_NAME_LOOSE, RE_CONSTANT_CASE, RE_HOOK_NAME, RE_HTML_TAG, RE_JAVASCRIPT_PROTOCOL, RE_JS_EXT, RE_JS_IDENTIFIER, RE_KEBAB_CASE, RE_PASCAL_CASE, RE_REGEXP_STR, RE_SNAKE_CASE, RE_TS_EXT, decodeESLintSettings, decodeSettings, defineRuleListener, getReactVersion, getSettingsFromContext, isESLintReactSettings, isESLintSettings, isRegExp, normalizeSettings,
|
|
341
|
+
export { DEFAULT_ESLINT_REACT_SETTINGS, DEFAULT_ESLINT_SETTINGS, ESLintReactSettingsSchema, ESLintSettingsSchema, RE_ANNOTATION_JSX, RE_ANNOTATION_JSX_FRAG, RE_ANNOTATION_JSX_IMPORT_SOURCE, RE_ANNOTATION_JSX_RUNTIME, RE_CAMEL_CASE, RE_COMPONENT_NAME, RE_COMPONENT_NAME_LOOSE, RE_CONSTANT_CASE, RE_HOOK_NAME, RE_HTML_TAG, RE_JAVASCRIPT_PROTOCOL, RE_JS_EXT, RE_JS_IDENTIFIER, RE_KEBAB_CASE, RE_PASCAL_CASE, RE_REGEXP_STR, RE_SNAKE_CASE, RE_TS_EXT, decodeESLintSettings, decodeSettings, defineRuleListener, getReactVersion, getSettingsFromContext, isESLintReactSettings, isESLintSettings, isRegExp, normalizeSettings, toRegExp };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/shared",
|
|
3
|
-
"version": "5.0.2-next.
|
|
3
|
+
"version": "5.0.2-next.3",
|
|
4
4
|
"description": "ESLint React's Shared constants and functions.",
|
|
5
5
|
"homepage": "https://github.com/Rel1cx/eslint-react",
|
|
6
6
|
"bugs": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@local/eff": "3.0.0-beta.72"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"eslint": "^10.
|
|
46
|
+
"eslint": "^10.2.0",
|
|
47
47
|
"typescript": "*"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|