@eslint-react/eslint-plugin 2.7.4-next.4 → 2.7.4-next.6
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 +3 -3
- package/dist/index.js +4 -4
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://npmjs.com/package/@eslint-react/eslint-plugin)
|
|
6
6
|
[](https://npmjs.com/package/@eslint-react/eslint-plugin)
|
|
7
7
|
[](https://npmjs.com/package/@eslint-react/eslint-plugin)
|
|
8
|
-
[](https://tsdown.dev)
|
|
9
9
|
|
|
10
10
|
4-7x faster, composable ESLint rules for React and friends.
|
|
11
11
|
|
package/dist/index.d.ts
CHANGED
|
@@ -4,9 +4,9 @@ import { CompatibleConfig, CompatiblePlugin } from "@eslint-react/shared";
|
|
|
4
4
|
type ConfigName = "all" | "disable-conflict-eslint-plugin-react" | "disable-dom" | "disable-experimental" | "disable-type-checked" | "disable-web-api" | "dom" | "no-deprecated" | "off" | "recommended" | "recommended-type-checked" | "recommended-typescript" | "strict" | "strict-type-checked" | "strict-typescript" | "web-api" | "x";
|
|
5
5
|
declare const plugin: CompatiblePlugin & {
|
|
6
6
|
/**
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
* For more information about each preset, please refer to the documentation.
|
|
8
|
+
* @see https://eslint-react.xyz/docs/presets
|
|
9
|
+
*/
|
|
10
10
|
configs: Record<ConfigName, CompatibleConfig>;
|
|
11
11
|
};
|
|
12
12
|
//#endregion
|
package/dist/index.js
CHANGED
|
@@ -9,9 +9,9 @@ import { DEFAULT_ESLINT_REACT_SETTINGS } from "@eslint-react/shared";
|
|
|
9
9
|
var __defProp = Object.defineProperty;
|
|
10
10
|
var __exportAll = (all, symbols) => {
|
|
11
11
|
let target = {};
|
|
12
|
-
for (var name
|
|
13
|
-
__defProp(target, name
|
|
14
|
-
get: all[name
|
|
12
|
+
for (var name in all) {
|
|
13
|
+
__defProp(target, name, {
|
|
14
|
+
get: all[name],
|
|
15
15
|
enumerable: true
|
|
16
16
|
});
|
|
17
17
|
}
|
|
@@ -24,7 +24,7 @@ var __exportAll = (all, symbols) => {
|
|
|
24
24
|
//#endregion
|
|
25
25
|
//#region package.json
|
|
26
26
|
var name$17 = "@eslint-react/eslint-plugin";
|
|
27
|
-
var version = "2.7.4-next.
|
|
27
|
+
var version = "2.7.4-next.6";
|
|
28
28
|
|
|
29
29
|
//#endregion
|
|
30
30
|
//#region src/configs/dom.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/eslint-plugin",
|
|
3
|
-
"version": "2.7.4-next.
|
|
3
|
+
"version": "2.7.4-next.6",
|
|
4
4
|
"description": "A unified plugin that combines all individual plugins from the eslint-react monorepo into one.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -45,16 +45,16 @@
|
|
|
45
45
|
"@typescript-eslint/types": "^8.53.1",
|
|
46
46
|
"@typescript-eslint/utils": "^8.53.1",
|
|
47
47
|
"ts-api-utils": "^2.4.0",
|
|
48
|
-
"@eslint-react/eff": "2.7.4-next.
|
|
49
|
-
"@eslint-react/shared": "2.7.4-next.
|
|
50
|
-
"eslint-plugin-react-dom": "2.7.4-next.
|
|
51
|
-
"eslint-plugin-react-hooks-extra": "2.7.4-next.
|
|
52
|
-
"eslint-plugin-react-naming-convention": "2.7.4-next.
|
|
53
|
-
"eslint-plugin-react-web-api": "2.7.4-next.
|
|
54
|
-
"eslint-plugin-react-x": "2.7.4-next.
|
|
48
|
+
"@eslint-react/eff": "2.7.4-next.6",
|
|
49
|
+
"@eslint-react/shared": "2.7.4-next.6",
|
|
50
|
+
"eslint-plugin-react-dom": "2.7.4-next.6",
|
|
51
|
+
"eslint-plugin-react-hooks-extra": "2.7.4-next.6",
|
|
52
|
+
"eslint-plugin-react-naming-convention": "2.7.4-next.6",
|
|
53
|
+
"eslint-plugin-react-web-api": "2.7.4-next.6",
|
|
54
|
+
"eslint-plugin-react-x": "2.7.4-next.6"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"tsdown": "^0.20.
|
|
57
|
+
"tsdown": "^0.20.1",
|
|
58
58
|
"@local/configs": "0.0.0"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|