eslint-plugin-remeda 1.6.0 → 1.8.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.cjs +3883 -17680
- package/dist/index.d.cts +37 -35
- package/dist/index.d.ts +37 -35
- package/dist/index.js +3868 -17685
- package/package.json +11 -10
package/package.json
CHANGED
@@ -1,20 +1,20 @@
|
|
1
1
|
{
|
2
2
|
"name": "eslint-plugin-remeda",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.8.0",
|
4
4
|
"author": "Andrea Pontrandolfo <andrea.pontra@gmail.com>",
|
5
5
|
"description": "ESLint plugin for Remeda library.",
|
6
6
|
"type": "module",
|
7
7
|
"main": "dist/index.js",
|
8
8
|
"scripts": {
|
9
|
-
"build": "
|
9
|
+
"build": "tsdown",
|
10
10
|
"typecheck": "tsc",
|
11
|
-
"lint": "eslint",
|
11
|
+
"lint": "eslint --max-warnings=0",
|
12
12
|
"knip": "knip",
|
13
|
-
"publint": "publint",
|
14
13
|
"test:watch": "vitest --ui",
|
15
14
|
"test": "vitest run",
|
16
|
-
"
|
17
|
-
"
|
15
|
+
"check-sheriff-inconsistencies": "sheriff",
|
16
|
+
"attw": "attw --ignore-rules=false-export-default --pack .",
|
17
|
+
"qa": "pnpm build && pnpm typecheck && pnpm lint && pnpm test && pnpm knip && pnpm attw && pnpm check-sheriff-inconsistencies",
|
18
18
|
"nuke": "rm -rf node_modules pnpm-lock.yaml",
|
19
19
|
"update:eslint-docs": "eslint-doc-generator",
|
20
20
|
"lint:eslint-docs": "pnpm update:eslint-docs -- --check",
|
@@ -22,6 +22,7 @@
|
|
22
22
|
},
|
23
23
|
"files": [
|
24
24
|
"README.md",
|
25
|
+
"LICENSE",
|
25
26
|
"dist",
|
26
27
|
"docs"
|
27
28
|
],
|
@@ -49,9 +50,10 @@
|
|
49
50
|
},
|
50
51
|
"devDependencies": {
|
51
52
|
"@arethetypeswrong/cli": "^0.17.4",
|
52
|
-
"@sherifforg/cli": "^8.
|
53
|
+
"@sherifforg/cli": "^8.3.0",
|
53
54
|
"@types/lodash-es": "^4.17.12",
|
54
55
|
"@types/node": "^22.14.0",
|
56
|
+
"@typescript-eslint/utils": "^8.29.0",
|
55
57
|
"@vitest/coverage-v8": "^3.1.1",
|
56
58
|
"@vitest/ui": "^3.1.1",
|
57
59
|
"eslint": "9.24.0",
|
@@ -59,14 +61,13 @@
|
|
59
61
|
"eslint-doc-generator": "^2.1.2",
|
60
62
|
"eslint-plugin-eslint-plugin": "^6.4.0",
|
61
63
|
"eslint-vitest-rule-tester": "^2.2.0",
|
62
|
-
"lodash-es": "^4.17.21",
|
63
64
|
"knip": "^5.49.0",
|
65
|
+
"lodash-es": "^4.17.21",
|
64
66
|
"prettier": "^3.3.2",
|
65
67
|
"publint": "^0.3.10",
|
66
68
|
"semantic-release": "^24.0.0",
|
67
|
-
"
|
69
|
+
"tsdown": "^0.9.1",
|
68
70
|
"typescript": "^5.5.2",
|
69
|
-
"@typescript-eslint/utils": "^8.29.0",
|
70
71
|
"vitest": "^3.1.1"
|
71
72
|
},
|
72
73
|
"engines": {
|