eslint-plugin-remeda 1.2.0 → 1.3.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.
Files changed (3) hide show
  1. package/dist/index.cjs +296 -273
  2. package/dist/index.js +290 -267
  3. package/package.json +8 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-remeda",
3
- "version": "1.2.0",
3
+ "version": "1.3.1",
4
4
  "author": "Andrea Pontrandolfo <andrea.pontra@gmail.com>",
5
5
  "description": "ESLint plugin for Remeda library.",
6
6
  "type": "module",
@@ -8,12 +8,14 @@
8
8
  "scripts": {
9
9
  "build": "tsup",
10
10
  "typecheck": "tsc",
11
+ "lint": "eslint",
11
12
  "knip": "knip",
12
13
  "publint": "publint",
13
14
  "test:watch": "vitest --ui",
14
15
  "test": "vitest run",
15
16
  "attw": "attw --pack .",
16
17
  "qa": "pnpm typecheck && pnpm test && pnpm knip && pnpm publint && attw",
18
+ "nuke": "rm -rf node_modules pnpm-lock.yaml",
17
19
  "semantic-release": "pnpm build && semantic-release"
18
20
  },
19
21
  "files": [
@@ -43,8 +45,10 @@
43
45
  "@types/node": "^20.14.9",
44
46
  "@vitest/coverage-v8": "^2.0.3",
45
47
  "@vitest/ui": "^2.0.3",
46
- "eslint": "^9.7.0",
47
- "eslint-plugin-eslint-plugin": "^4.2.0",
48
+ "eslint": "9.10.0",
49
+ "eslint-config-sheriff": "^21.2.0",
50
+ "eslint-define-config": "^2.1.0",
51
+ "eslint-plugin-eslint-plugin": "^6.2.0",
48
52
  "eslint-vitest-rule-tester": "^0.3.3",
49
53
  "knip": "^5.29.1",
50
54
  "prettier": "^3.3.2",
@@ -57,7 +61,7 @@
57
61
  "engines": {
58
62
  "node": ">=20"
59
63
  },
60
- "packageManager": "pnpm@9.7.1",
64
+ "packageManager": "pnpm@9.9.0",
61
65
  "publishConfig": {
62
66
  "access": "public"
63
67
  },