@eslint-react/eslint-plugin 1.42.0 → 1.42.1-beta.0
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 +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +5 -1
- package/dist/index.mjs +5 -1
- package/package.json +10 -10
package/dist/index.d.mts
CHANGED
|
@@ -3320,6 +3320,13 @@ declare const _default: {
|
|
|
3320
3320
|
plugins: string[];
|
|
3321
3321
|
rules: RulePreset;
|
|
3322
3322
|
};
|
|
3323
|
+
/** @deprecated Use `x` instead */
|
|
3324
|
+
readonly core: typeof xConfig;
|
|
3325
|
+
/** @deprecated Use `x-legacy` instead */
|
|
3326
|
+
readonly "core-legacy": {
|
|
3327
|
+
plugins: string[];
|
|
3328
|
+
rules: RulePreset;
|
|
3329
|
+
};
|
|
3323
3330
|
/** @deprecated Use `disable-dom` instead */
|
|
3324
3331
|
readonly "off-dom": typeof disableDomConfig;
|
|
3325
3332
|
/** @deprecated Use `disable-dom-legacy` instead */
|
package/dist/index.d.ts
CHANGED
|
@@ -3320,6 +3320,13 @@ declare const _default: {
|
|
|
3320
3320
|
plugins: string[];
|
|
3321
3321
|
rules: RulePreset;
|
|
3322
3322
|
};
|
|
3323
|
+
/** @deprecated Use `x` instead */
|
|
3324
|
+
readonly core: typeof xConfig;
|
|
3325
|
+
/** @deprecated Use `x-legacy` instead */
|
|
3326
|
+
readonly "core-legacy": {
|
|
3327
|
+
plugins: string[];
|
|
3328
|
+
rules: RulePreset;
|
|
3329
|
+
};
|
|
3323
3330
|
/** @deprecated Use `disable-dom` instead */
|
|
3324
3331
|
readonly "off-dom": typeof disableDomConfig;
|
|
3325
3332
|
/** @deprecated Use `disable-dom-legacy` instead */
|
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.42.0";
|
|
28
|
+
var version = "1.42.1-beta.0";
|
|
29
29
|
|
|
30
30
|
// src/configs/all.ts
|
|
31
31
|
var all_exports = {};
|
|
@@ -441,6 +441,10 @@ var index_default = {
|
|
|
441
441
|
["x"]: x_exports,
|
|
442
442
|
["x-legacy"]: toLegacyConfig(x_exports),
|
|
443
443
|
// Part: deprecated presets
|
|
444
|
+
/** @deprecated Use `x` instead */
|
|
445
|
+
["core"]: x_exports,
|
|
446
|
+
/** @deprecated Use `x-legacy` instead */
|
|
447
|
+
["core-legacy"]: toLegacyConfig(x_exports),
|
|
444
448
|
/** @deprecated Use `disable-dom` instead */
|
|
445
449
|
["off-dom"]: disable_dom_exports,
|
|
446
450
|
/** @deprecated Use `disable-dom-legacy` instead */
|
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.42.0";
|
|
17
|
+
var version = "1.42.1-beta.0";
|
|
18
18
|
|
|
19
19
|
// src/configs/all.ts
|
|
20
20
|
var all_exports = {};
|
|
@@ -430,6 +430,10 @@ var index_default = {
|
|
|
430
430
|
["x"]: x_exports,
|
|
431
431
|
["x-legacy"]: toLegacyConfig(x_exports),
|
|
432
432
|
// Part: deprecated presets
|
|
433
|
+
/** @deprecated Use `x` instead */
|
|
434
|
+
["core"]: x_exports,
|
|
435
|
+
/** @deprecated Use `x-legacy` instead */
|
|
436
|
+
["core-legacy"]: toLegacyConfig(x_exports),
|
|
433
437
|
/** @deprecated Use `disable-dom` instead */
|
|
434
438
|
["off-dom"]: disable_dom_exports,
|
|
435
439
|
/** @deprecated Use `disable-dom-legacy` instead */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/eslint-plugin",
|
|
3
|
-
"version": "1.42.0",
|
|
3
|
+
"version": "1.42.1-beta.0",
|
|
4
4
|
"description": "A series of composable ESLint rules for React and friends.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -50,15 +50,15 @@
|
|
|
50
50
|
"@typescript-eslint/type-utils": "^8.29.1",
|
|
51
51
|
"@typescript-eslint/types": "^8.29.1",
|
|
52
52
|
"@typescript-eslint/utils": "^8.29.1",
|
|
53
|
-
"@eslint-react/eff": "1.42.0",
|
|
54
|
-
"@eslint-react/kit": "1.42.0",
|
|
55
|
-
"eslint-plugin-react-debug": "1.42.0",
|
|
56
|
-
"eslint-plugin-react-dom": "1.42.0",
|
|
57
|
-
"
|
|
58
|
-
"eslint-plugin-react-naming-convention": "1.42.0",
|
|
59
|
-
"eslint-
|
|
60
|
-
"eslint-plugin-react-web-api": "1.42.0",
|
|
61
|
-
"eslint-plugin-react-x": "1.42.0"
|
|
53
|
+
"@eslint-react/eff": "1.42.1-beta.0",
|
|
54
|
+
"@eslint-react/kit": "1.42.1-beta.0",
|
|
55
|
+
"eslint-plugin-react-debug": "1.42.1-beta.0",
|
|
56
|
+
"eslint-plugin-react-dom": "1.42.1-beta.0",
|
|
57
|
+
"eslint-plugin-react-hooks-extra": "1.42.1-beta.0",
|
|
58
|
+
"eslint-plugin-react-naming-convention": "1.42.1-beta.0",
|
|
59
|
+
"@eslint-react/shared": "1.42.1-beta.0",
|
|
60
|
+
"eslint-plugin-react-web-api": "1.42.1-beta.0",
|
|
61
|
+
"eslint-plugin-react-x": "1.42.1-beta.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"tsup": "^8.4.0",
|