@eslint-react/kit 5.2.0-next.0 → 5.2.1-beta.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/README.md +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -37,10 +37,10 @@ npm install --save-dev @eslint-react/kit
|
|
|
37
37
|
## Quick Start
|
|
38
38
|
|
|
39
39
|
```ts
|
|
40
|
+
import eslintReact from "@eslint-react/eslint-plugin";
|
|
40
41
|
import eslintReactKit, { merge } from "@eslint-react/kit";
|
|
41
42
|
import type { RuleFunction } from "@eslint-react/kit";
|
|
42
43
|
import eslintJs from "@eslint/js";
|
|
43
|
-
import eslintReact from "eslint-plugin-react-instant";
|
|
44
44
|
import { defineConfig } from "eslint/config";
|
|
45
45
|
import tseslint from "typescript-eslint";
|
|
46
46
|
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { SyntaxKind } from "typescript";
|
|
|
6
6
|
import { RuleContext } from "@typescript-eslint/utils/ts-eslint";
|
|
7
7
|
import { ESLint, Linter } from "eslint";
|
|
8
8
|
|
|
9
|
-
//#region
|
|
9
|
+
//#region ../../node_modules/.pnpm/@typescript-eslint+types@8.58.1/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts
|
|
10
10
|
declare type Accessibility = 'private' | 'protected' | 'public';
|
|
11
11
|
declare type AccessorProperty = AccessorPropertyComputedName | AccessorPropertyNonComputedName;
|
|
12
12
|
declare interface AccessorPropertyComputedName extends PropertyDefinitionComputedNameBase {
|
|
@@ -2145,7 +2145,7 @@ declare interface YieldExpression extends BaseNode {
|
|
|
2145
2145
|
delegate: boolean;
|
|
2146
2146
|
}
|
|
2147
2147
|
//#endregion
|
|
2148
|
-
//#region
|
|
2148
|
+
//#region ../../node_modules/.pnpm/@typescript-eslint+types@8.58.1/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts
|
|
2149
2149
|
declare module './generated/ast-spec' {
|
|
2150
2150
|
interface BaseNode {
|
|
2151
2151
|
parent: Node;
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/kit",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.1-beta.3",
|
|
4
4
|
"description": "ESLint React's utility module for building custom React rules with JavasSript functions.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
17
|
"url": "git+https://github.com/Rel1cx/eslint-react.git",
|
|
18
|
-
"directory": "packages
|
|
18
|
+
"directory": "packages/kit"
|
|
19
19
|
},
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"author": "Rel1cx",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"@typescript-eslint/utils": "^8.58.1",
|
|
40
40
|
"string-ts": "^2.3.1",
|
|
41
41
|
"ulid": "^3.0.2",
|
|
42
|
-
"@eslint-react/ast": "5.2.
|
|
43
|
-
"@eslint-react/
|
|
44
|
-
"@eslint-react/core": "5.2.
|
|
45
|
-
"@eslint-react/
|
|
42
|
+
"@eslint-react/ast": "5.2.1-beta.3",
|
|
43
|
+
"@eslint-react/eslint": "5.2.1-beta.3",
|
|
44
|
+
"@eslint-react/core": "5.2.1-beta.3",
|
|
45
|
+
"@eslint-react/shared": "5.2.1-beta.3"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"eslint": "^10.2.0",
|