productive-eslint 3.3.2 → 4.0.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/AGENTS.md +35 -0
- package/README.md +94 -17
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +6 -0
- package/dist/index.config.d.ts +14 -20
- package/dist/index.config.js +1 -1
- package/dist/model-DGP73Lve.js +1 -0
- package/docs/README.md +45 -0
- package/docs/analyzer-runtime.md +105 -0
- package/docs/cli-diagnostics.md +106 -0
- package/docs/configuration.md +79 -0
- package/package.json +36 -31
- package/FIXES.md +0 -1039
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "productive-eslint",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "4.0.0",
|
|
5
5
|
"description": "Mildly strict and sufficiently practical ESLint config based on Evgeny Orekhov's eslint-config-hardcore",
|
|
6
6
|
"author": "Bogdan Binitskiy",
|
|
7
7
|
"contributors": [
|
|
@@ -25,19 +25,23 @@
|
|
|
25
25
|
],
|
|
26
26
|
"main": "./dist/index.config.js",
|
|
27
27
|
"types": "./dist/index.config.d.ts",
|
|
28
|
+
"bin": {
|
|
29
|
+
"productive-eslint": "./dist/cli.js"
|
|
30
|
+
},
|
|
28
31
|
"exports": {
|
|
29
32
|
".": {
|
|
30
33
|
"import": "./dist/index.config.js",
|
|
31
34
|
"types": "./dist/index.config.d.ts"
|
|
32
35
|
},
|
|
33
|
-
"./
|
|
36
|
+
"./AGENTS.md": "./AGENTS.md"
|
|
34
37
|
},
|
|
35
38
|
"files": [
|
|
36
39
|
"dist",
|
|
37
|
-
"
|
|
40
|
+
"docs",
|
|
41
|
+
"AGENTS.md"
|
|
38
42
|
],
|
|
39
43
|
"engines": {
|
|
40
|
-
"node": ">=
|
|
44
|
+
"node": ">=24"
|
|
41
45
|
},
|
|
42
46
|
"peerDependencies": {
|
|
43
47
|
"eslint": "^10.0.1",
|
|
@@ -46,49 +50,50 @@
|
|
|
46
50
|
"typescript": "^5.9.3"
|
|
47
51
|
},
|
|
48
52
|
"dependencies": {
|
|
49
|
-
"@eslint-community/eslint-plugin-eslint-comments": "^4.
|
|
50
|
-
"@eslint/css": "^
|
|
53
|
+
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
|
|
54
|
+
"@eslint/css": "^1.2.0",
|
|
51
55
|
"@smarttools/eslint-plugin-rxjs": "^1.0.22",
|
|
52
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
53
|
-
"@typescript-eslint/parser": "^8.
|
|
54
|
-
"eslint-config-flat-gitignore": "^2.
|
|
55
|
-
"eslint-flat-config-utils": "^3.0
|
|
56
|
+
"@typescript-eslint/eslint-plugin": "^8.59.3",
|
|
57
|
+
"@typescript-eslint/parser": "^8.59.3",
|
|
58
|
+
"eslint-config-flat-gitignore": "^2.3.0",
|
|
59
|
+
"eslint-flat-config-utils": "^3.2.0",
|
|
56
60
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
57
|
-
"eslint-plugin-boundaries": "^
|
|
61
|
+
"eslint-plugin-boundaries": "^6.0.2",
|
|
58
62
|
"eslint-plugin-import": "^2.32.0",
|
|
59
|
-
"eslint-plugin-
|
|
60
|
-
"eslint-plugin-
|
|
61
|
-
"eslint-plugin-
|
|
62
|
-
"eslint-plugin-perfectionist": "^5.6.0",
|
|
63
|
+
"eslint-plugin-jsonc": "^3.1.2",
|
|
64
|
+
"eslint-plugin-n": "^18.0.1",
|
|
65
|
+
"eslint-plugin-perfectionist": "^5.9.0",
|
|
63
66
|
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
|
|
64
67
|
"eslint-plugin-prettier": "^5.5.5",
|
|
65
|
-
"eslint-plugin-promise": "^7.
|
|
66
|
-
"eslint-plugin-regexp": "^3.
|
|
67
|
-
"eslint-plugin-sonarjs": "^4.0.
|
|
68
|
-
"eslint-plugin-toml": "^1.3.
|
|
69
|
-
"eslint-plugin-unicorn": "^
|
|
68
|
+
"eslint-plugin-promise": "^7.3.0",
|
|
69
|
+
"eslint-plugin-regexp": "^3.1.0",
|
|
70
|
+
"eslint-plugin-sonarjs": "^4.0.3",
|
|
71
|
+
"eslint-plugin-toml": "^1.3.1",
|
|
72
|
+
"eslint-plugin-unicorn": "^64.0.0",
|
|
70
73
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
71
|
-
"eslint-plugin-vue": "^10.
|
|
72
|
-
"eslint-plugin-yml": "^3.3.
|
|
73
|
-
"globals": "^
|
|
74
|
-
"
|
|
74
|
+
"eslint-plugin-vue": "^10.9.1",
|
|
75
|
+
"eslint-plugin-yml": "^3.3.2",
|
|
76
|
+
"globals": "^17.6.0",
|
|
77
|
+
"jiti": "^2.7.0",
|
|
78
|
+
"jsonc-eslint-parser": "^3.1.0",
|
|
75
79
|
"local-pkg": "^1.1.2",
|
|
76
|
-
"toml-eslint-parser": "^0.
|
|
80
|
+
"toml-eslint-parser": "^1.0.3",
|
|
77
81
|
"vue-eslint-parser": "^10.1.3",
|
|
78
|
-
"yaml-eslint-parser": "^
|
|
82
|
+
"yaml-eslint-parser": "^2.0.0"
|
|
79
83
|
},
|
|
80
84
|
"devDependencies": {
|
|
81
|
-
"@types/node": "^
|
|
82
|
-
"@typescript-eslint/utils": "^8.
|
|
83
|
-
"eslint": "^10.0
|
|
84
|
-
"
|
|
85
|
-
"tsdown": "^0.
|
|
85
|
+
"@types/node": "^24.12.4",
|
|
86
|
+
"@typescript-eslint/utils": "^8.59.3",
|
|
87
|
+
"eslint": "^10.4.0",
|
|
88
|
+
"rxjs": "7.8.2",
|
|
89
|
+
"tsdown": "^0.22.0",
|
|
86
90
|
"typescript": "^5.9.3"
|
|
87
91
|
},
|
|
88
92
|
"scripts": {
|
|
89
93
|
"lint": "tsc && eslint --fix",
|
|
90
94
|
"inspect": "npx @eslint/config-inspector@latest",
|
|
91
95
|
"build": "tsdown --clean --dts",
|
|
96
|
+
"test": "pnpm build && node --import jiti/register --test test/cli/*.test.ts",
|
|
92
97
|
"release": "pnpm build && pnpm publish",
|
|
93
98
|
"rules:dump": "jiti scripts/dump-eslint-rules.ts",
|
|
94
99
|
"rules:compare": "jiti scripts/compare-eslint-rules.ts"
|