eslint-plugin-react-x 2.5.6-beta.0 → 2.5.6-beta.2
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 -8
- package/dist/index.js +1 -1
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -22,19 +22,12 @@ import tseslint from "typescript-eslint";
|
|
|
22
22
|
|
|
23
23
|
export default defineConfig(
|
|
24
24
|
{
|
|
25
|
-
files: ["**/*.ts
|
|
25
|
+
files: ["**/*.{ts,tsx}"],
|
|
26
26
|
extends: [
|
|
27
27
|
js.configs.recommended,
|
|
28
28
|
tseslint.configs.recommended,
|
|
29
29
|
react.configs.recommended,
|
|
30
30
|
],
|
|
31
|
-
languageOptions: {
|
|
32
|
-
parser: tseslint.parser,
|
|
33
|
-
parserOptions: {
|
|
34
|
-
projectService: true,
|
|
35
|
-
tsconfigRootDir: import.meta.dirname,
|
|
36
|
-
},
|
|
37
|
-
},
|
|
38
31
|
rules: {
|
|
39
32
|
// Put rules you want to override here
|
|
40
33
|
"react-x/no-class-component": "warn",
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-react-x",
|
|
3
|
-
"version": "2.5.6-beta.
|
|
3
|
+
"version": "2.5.6-beta.2",
|
|
4
4
|
"description": "A set of composable ESLint rules for for libraries and frameworks that use React as a UI runtime.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -37,25 +37,25 @@
|
|
|
37
37
|
"./package.json"
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@typescript-eslint/scope-manager": "^8.
|
|
41
|
-
"@typescript-eslint/type-utils": "^8.
|
|
42
|
-
"@typescript-eslint/types": "^8.
|
|
43
|
-
"@typescript-eslint/utils": "^8.
|
|
40
|
+
"@typescript-eslint/scope-manager": "^8.53.0",
|
|
41
|
+
"@typescript-eslint/type-utils": "^8.53.0",
|
|
42
|
+
"@typescript-eslint/types": "^8.53.0",
|
|
43
|
+
"@typescript-eslint/utils": "^8.53.0",
|
|
44
44
|
"compare-versions": "^6.1.1",
|
|
45
45
|
"is-immutable-type": "^5.0.1",
|
|
46
46
|
"string-ts": "^2.3.1",
|
|
47
47
|
"ts-api-utils": "^2.4.0",
|
|
48
48
|
"ts-pattern": "^5.9.0",
|
|
49
|
-
"@eslint-react/ast": "2.5.6-beta.
|
|
50
|
-
"@eslint-react/core": "2.5.6-beta.
|
|
51
|
-
"@eslint-react/eff": "2.5.6-beta.
|
|
52
|
-
"@eslint-react/shared": "2.5.6-beta.
|
|
53
|
-
"@eslint-react/var": "2.5.6-beta.
|
|
49
|
+
"@eslint-react/ast": "2.5.6-beta.2",
|
|
50
|
+
"@eslint-react/core": "2.5.6-beta.2",
|
|
51
|
+
"@eslint-react/eff": "2.5.6-beta.2",
|
|
52
|
+
"@eslint-react/shared": "2.5.6-beta.2",
|
|
53
|
+
"@eslint-react/var": "2.5.6-beta.2"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/react": "^19.2.8",
|
|
57
57
|
"@types/react-dom": "^19.2.3",
|
|
58
|
-
"tsdown": "^0.
|
|
58
|
+
"tsdown": "^0.20.0-beta.1",
|
|
59
59
|
"@local/configs": "0.0.0"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|