eslint-plugin-function 0.4.0 → 0.5.1
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.js +2 -3
- package/package.json +8 -8
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import { AST_NODE_TYPES } from "@typescript-eslint/types";
|
|
|
9
9
|
|
|
10
10
|
//#region package.json
|
|
11
11
|
var name = "eslint-plugin-function";
|
|
12
|
-
var version = "0.
|
|
12
|
+
var version = "0.5.1";
|
|
13
13
|
|
|
14
14
|
//#endregion
|
|
15
15
|
//#region src/utils/create-rule.ts
|
|
@@ -373,7 +373,6 @@ const plugin = {
|
|
|
373
373
|
"function-return-boolean": function_return_boolean_default
|
|
374
374
|
}
|
|
375
375
|
};
|
|
376
|
-
var src_default = plugin;
|
|
377
376
|
|
|
378
377
|
//#endregion
|
|
379
|
-
export {
|
|
378
|
+
export { plugin as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-function",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "(WIP) An ESLint plugin for function-related rules.",
|
|
6
6
|
"homepage": "https://github.com/Rel1cx/dx",
|
|
@@ -27,22 +27,22 @@
|
|
|
27
27
|
"package.json"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@eslint-react/ast": "^2.
|
|
31
|
-
"@eslint-react/shared": "^2.
|
|
30
|
+
"@eslint-react/ast": "^2.12.2",
|
|
31
|
+
"@eslint-react/shared": "^2.12.2",
|
|
32
32
|
"@typescript-eslint/scope-manager": "^8.54.0",
|
|
33
33
|
"@typescript-eslint/type-utils": "^8.54.0",
|
|
34
34
|
"@typescript-eslint/types": "^8.54.0",
|
|
35
35
|
"@typescript-eslint/utils": "^8.54.0",
|
|
36
|
-
"typescript-eslint": "^8.54.0",
|
|
37
36
|
"string-ts": "^2.3.1",
|
|
38
37
|
"ts-api-utils": "^2.4.0",
|
|
39
|
-
"ts-pattern": "^5.9.0"
|
|
38
|
+
"ts-pattern": "^5.9.0",
|
|
39
|
+
"typescript-eslint": "^8.54.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@types/node": "^25.2.
|
|
42
|
+
"@types/node": "^25.2.2",
|
|
43
43
|
"dedent": "^1.7.1",
|
|
44
|
-
"eslint": "^
|
|
45
|
-
"tsdown": "^0.20.
|
|
44
|
+
"eslint": "^10.0.0",
|
|
45
|
+
"tsdown": "^0.20.3",
|
|
46
46
|
"tsl": "^1.0.28",
|
|
47
47
|
"@local/eff": "0.2.9"
|
|
48
48
|
},
|