@eslint-react/eslint-plugin 1.17.0-next.3 → 1.17.0-next.4
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.mts +8 -6
- package/dist/index.d.ts +8 -6
- package/dist/index.js +6 -4
- package/dist/index.mjs +6 -4
- package/package.json +10 -10
package/dist/index.d.mts
CHANGED
|
@@ -381,9 +381,10 @@ declare namespace coreConfig {
|
|
|
381
381
|
|
|
382
382
|
declare const name$9 = "@eslint-react/debug";
|
|
383
383
|
declare const rules$9: {
|
|
384
|
-
readonly "@eslint-react/debug/
|
|
385
|
-
readonly "@eslint-react/debug/
|
|
386
|
-
readonly "@eslint-react/debug/
|
|
384
|
+
readonly "@eslint-react/debug/class-component": "warn";
|
|
385
|
+
readonly "@eslint-react/debug/function-component": "warn";
|
|
386
|
+
readonly "@eslint-react/debug/hook": "warn";
|
|
387
|
+
readonly "@eslint-react/debug/is-from-react": "warn";
|
|
387
388
|
};
|
|
388
389
|
declare const plugins$4: {
|
|
389
390
|
"@eslint-react/debug": {
|
|
@@ -407,9 +408,10 @@ declare namespace debugConfig {
|
|
|
407
408
|
|
|
408
409
|
declare const name$8 = "@eslint-react/disable-debug";
|
|
409
410
|
declare const rules$8: {
|
|
410
|
-
"@eslint-react/debug/
|
|
411
|
-
"@eslint-react/debug/
|
|
412
|
-
"@eslint-react/debug/
|
|
411
|
+
"@eslint-react/debug/class-component"?: "off";
|
|
412
|
+
"@eslint-react/debug/function-component"?: "off";
|
|
413
|
+
"@eslint-react/debug/hook"?: "off";
|
|
414
|
+
"@eslint-react/debug/is-from-react"?: "off";
|
|
413
415
|
};
|
|
414
416
|
|
|
415
417
|
declare namespace disableDebugConfig {
|
package/dist/index.d.ts
CHANGED
|
@@ -381,9 +381,10 @@ declare namespace coreConfig {
|
|
|
381
381
|
|
|
382
382
|
declare const name$9 = "@eslint-react/debug";
|
|
383
383
|
declare const rules$9: {
|
|
384
|
-
readonly "@eslint-react/debug/
|
|
385
|
-
readonly "@eslint-react/debug/
|
|
386
|
-
readonly "@eslint-react/debug/
|
|
384
|
+
readonly "@eslint-react/debug/class-component": "warn";
|
|
385
|
+
readonly "@eslint-react/debug/function-component": "warn";
|
|
386
|
+
readonly "@eslint-react/debug/hook": "warn";
|
|
387
|
+
readonly "@eslint-react/debug/is-from-react": "warn";
|
|
387
388
|
};
|
|
388
389
|
declare const plugins$4: {
|
|
389
390
|
"@eslint-react/debug": {
|
|
@@ -407,9 +408,10 @@ declare namespace debugConfig {
|
|
|
407
408
|
|
|
408
409
|
declare const name$8 = "@eslint-react/disable-debug";
|
|
409
410
|
declare const rules$8: {
|
|
410
|
-
"@eslint-react/debug/
|
|
411
|
-
"@eslint-react/debug/
|
|
412
|
-
"@eslint-react/debug/
|
|
411
|
+
"@eslint-react/debug/class-component"?: "off";
|
|
412
|
+
"@eslint-react/debug/function-component"?: "off";
|
|
413
|
+
"@eslint-react/debug/hook"?: "off";
|
|
414
|
+
"@eslint-react/debug/is-from-react"?: "off";
|
|
413
415
|
};
|
|
414
416
|
|
|
415
417
|
declare namespace disableDebugConfig {
|
package/dist/index.js
CHANGED
|
@@ -25,7 +25,7 @@ var __export = (target, all) => {
|
|
|
25
25
|
|
|
26
26
|
// package.json
|
|
27
27
|
var name = "@eslint-react/eslint-plugin";
|
|
28
|
-
var version = "1.17.0-next.
|
|
28
|
+
var version = "1.17.0-next.4";
|
|
29
29
|
|
|
30
30
|
// src/configs/all.ts
|
|
31
31
|
var all_exports = {};
|
|
@@ -192,6 +192,7 @@ var rules3 = {
|
|
|
192
192
|
"@eslint-react/hooks-extra/no-unnecessary-use-callback": "warn",
|
|
193
193
|
"@eslint-react/hooks-extra/no-unnecessary-use-memo": "warn",
|
|
194
194
|
"@eslint-react/hooks-extra/prefer-use-state-lazy-initialization": "warn",
|
|
195
|
+
// Part: Naming Convention
|
|
195
196
|
"@eslint-react/naming-convention/component-name": "warn",
|
|
196
197
|
"@eslint-react/naming-convention/filename": "warn",
|
|
197
198
|
"@eslint-react/naming-convention/filename-extension": "warn",
|
|
@@ -218,9 +219,10 @@ __export(debug_exports, {
|
|
|
218
219
|
});
|
|
219
220
|
var name5 = "@eslint-react/debug";
|
|
220
221
|
var rules4 = {
|
|
221
|
-
"@eslint-react/debug/
|
|
222
|
-
"@eslint-react/debug/
|
|
223
|
-
"@eslint-react/debug/
|
|
222
|
+
"@eslint-react/debug/class-component": "warn",
|
|
223
|
+
"@eslint-react/debug/function-component": "warn",
|
|
224
|
+
"@eslint-react/debug/hook": "warn",
|
|
225
|
+
"@eslint-react/debug/is-from-react": "warn"
|
|
224
226
|
};
|
|
225
227
|
var plugins4 = {
|
|
226
228
|
"@eslint-react/debug": reactDebug__default.default
|
package/dist/index.mjs
CHANGED
|
@@ -14,7 +14,7 @@ var __export = (target, all) => {
|
|
|
14
14
|
|
|
15
15
|
// package.json
|
|
16
16
|
var name = "@eslint-react/eslint-plugin";
|
|
17
|
-
var version = "1.17.0-next.
|
|
17
|
+
var version = "1.17.0-next.4";
|
|
18
18
|
|
|
19
19
|
// src/configs/all.ts
|
|
20
20
|
var all_exports = {};
|
|
@@ -181,6 +181,7 @@ var rules3 = {
|
|
|
181
181
|
"@eslint-react/hooks-extra/no-unnecessary-use-callback": "warn",
|
|
182
182
|
"@eslint-react/hooks-extra/no-unnecessary-use-memo": "warn",
|
|
183
183
|
"@eslint-react/hooks-extra/prefer-use-state-lazy-initialization": "warn",
|
|
184
|
+
// Part: Naming Convention
|
|
184
185
|
"@eslint-react/naming-convention/component-name": "warn",
|
|
185
186
|
"@eslint-react/naming-convention/filename": "warn",
|
|
186
187
|
"@eslint-react/naming-convention/filename-extension": "warn",
|
|
@@ -207,9 +208,10 @@ __export(debug_exports, {
|
|
|
207
208
|
});
|
|
208
209
|
var name5 = "@eslint-react/debug";
|
|
209
210
|
var rules4 = {
|
|
210
|
-
"@eslint-react/debug/
|
|
211
|
-
"@eslint-react/debug/
|
|
212
|
-
"@eslint-react/debug/
|
|
211
|
+
"@eslint-react/debug/class-component": "warn",
|
|
212
|
+
"@eslint-react/debug/function-component": "warn",
|
|
213
|
+
"@eslint-react/debug/hook": "warn",
|
|
214
|
+
"@eslint-react/debug/is-from-react": "warn"
|
|
213
215
|
};
|
|
214
216
|
var plugins4 = {
|
|
215
217
|
"@eslint-react/debug": reactDebug
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/eslint-plugin",
|
|
3
|
-
"version": "1.17.0-next.
|
|
3
|
+
"version": "1.17.0-next.4",
|
|
4
4
|
"description": "The main ESLint plugin of ESLint React. Contains all the rules and presets of ESLint React.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
"@typescript-eslint/type-utils": "^8.15.0",
|
|
48
48
|
"@typescript-eslint/types": "^8.15.0",
|
|
49
49
|
"@typescript-eslint/utils": "^8.15.0",
|
|
50
|
-
"@eslint-react/shared": "1.17.0-next.
|
|
51
|
-
"@eslint-react/tools": "1.17.0-next.
|
|
52
|
-
"
|
|
53
|
-
"eslint-plugin-react-
|
|
54
|
-
"eslint-plugin-react-
|
|
55
|
-
"eslint-
|
|
56
|
-
"eslint-plugin-react-
|
|
57
|
-
"eslint-plugin-react-
|
|
58
|
-
"eslint-plugin-react-x": "1.17.0-next.
|
|
50
|
+
"@eslint-react/shared": "1.17.0-next.4",
|
|
51
|
+
"@eslint-react/tools": "1.17.0-next.4",
|
|
52
|
+
"eslint-plugin-react-debug": "1.17.0-next.4",
|
|
53
|
+
"eslint-plugin-react-dom": "1.17.0-next.4",
|
|
54
|
+
"eslint-plugin-react-naming-convention": "1.17.0-next.4",
|
|
55
|
+
"@eslint-react/types": "1.17.0-next.4",
|
|
56
|
+
"eslint-plugin-react-hooks-extra": "1.17.0-next.4",
|
|
57
|
+
"eslint-plugin-react-web-api": "1.17.0-next.4",
|
|
58
|
+
"eslint-plugin-react-x": "1.17.0-next.4"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"tsup": "^8.3.5"
|