@darksheep/eslint 10.1.0 → 10.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## [10.1.1](https://github.com/DarkSheepSoftware/eslint/compare/v10.1.0...v10.1.1) (2026-04-17)
4
+
5
+
6
+ ### 🩹 Fixes
7
+
8
+ * Disable sorting of objects ([#1190](https://github.com/DarkSheepSoftware/eslint/issues/1190)) ([118ea80](https://github.com/DarkSheepSoftware/eslint/commit/118ea80f17d52d52d68a541ed2c7919231d7a946))
9
+
10
+
11
+ ### 📦 Dependencies
12
+
13
+ * **pkg:** update dependency eslint-plugin-jest to v29.15.2 ([#1176](https://github.com/DarkSheepSoftware/eslint/issues/1176)) ([75b30a6](https://github.com/DarkSheepSoftware/eslint/commit/75b30a61237c67cb972086f0b4127de1ae40fc16))
14
+ * **pkg:** update typescript-eslint monorepo to v8.58.2 ([#1172](https://github.com/DarkSheepSoftware/eslint/issues/1172)) ([5b6f4aa](https://github.com/DarkSheepSoftware/eslint/commit/5b6f4aa9285cdf8bf16bfcfc4d81661e331f3c6e))
15
+
3
16
  ## [10.1.0](https://github.com/DarkSheepSoftware/eslint/compare/v10.0.7...v10.1.0) (2026-04-08)
4
17
 
5
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@darksheep/eslint",
3
- "version": "10.1.0",
3
+ "version": "10.1.1",
4
4
  "description": "A fairly complete (opinionated) eslint config",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,11 +30,11 @@
30
30
  "@eslint/compat": "2.0.5",
31
31
  "@eslint/js": "9.39.4",
32
32
  "@stylistic/eslint-plugin": "5.10.0",
33
- "@typescript-eslint/eslint-plugin": "8.58.1",
34
- "@typescript-eslint/parser": "8.58.1",
33
+ "@typescript-eslint/eslint-plugin": "8.58.2",
34
+ "@typescript-eslint/parser": "8.58.2",
35
35
  "editorconfig": "3.0.2",
36
36
  "eslint-plugin-command": "3.5.2",
37
- "eslint-plugin-jest": "29.15.1",
37
+ "eslint-plugin-jest": "29.15.2",
38
38
  "eslint-plugin-jsdoc": "62.9.0",
39
39
  "eslint-plugin-jsonc": "3.1.2",
40
40
  "eslint-plugin-n": "17.24.0",
@@ -52,9 +52,9 @@
52
52
  "yaml-eslint-parser": "2.0.0"
53
53
  },
54
54
  "devDependencies": {
55
- "@darksheep/eslint-formatter-github": "2.2.0",
55
+ "@darksheep/eslint-formatter-github": "2.2.1",
56
56
  "@darksheep/package.json": "~3.1.0",
57
- "@eslint/config-inspector": "~1.5.0",
57
+ "@eslint/config-inspector": "~2.0.0",
58
58
  "@types/node": "~24.12.0",
59
59
  "dedent": "~1.7.2",
60
60
  "eslint": "~9.39.4",
@@ -68,12 +68,12 @@
68
68
  "optional": true
69
69
  }
70
70
  },
71
- "packageManager": "yarn@4.13.0",
71
+ "packageManager": "yarn@4.14.1",
72
72
  "engines": {
73
73
  "node": "^20.13.1 || >=22.2.0"
74
74
  },
75
75
  "volta": {
76
- "node": "24.14.1",
77
- "yarn": "4.13.0"
76
+ "node": "24.15.0",
77
+ "yarn": "4.14.1"
78
78
  }
79
79
  }
@@ -31,13 +31,13 @@ const commonRules = {
31
31
  ],
32
32
  },
33
33
  ],
34
- 'perfectionist/sort-array': 0,
35
- 'perfectionist/sort-array-includes': 0,
34
+ 'perfectionist/sort-array': 'off',
35
+ 'perfectionist/sort-array-includes': 'off',
36
36
  'perfectionist/sort-decorators': 'off',
37
37
  'perfectionist/sort-heritage-clauses': 'off',
38
- 'perfectionist/sort-maps': 0,
38
+ 'perfectionist/sort-maps': 'off',
39
39
  'perfectionist/sort-modules': 'off',
40
- 'perfectionist/sort-objects': 0,
40
+ 'perfectionist/sort-objects': 'off',
41
41
  };
42
42
 
43
43
  /** @type {Linter.RulesRecord} */
@@ -106,19 +106,19 @@ const moduleRules = {
106
106
 
107
107
  /** @type {Linter.RulesRecord} */
108
108
  const typescriptRules = {
109
- 'perfectionist/sort-astro-attributes': 0,
110
- 'perfectionist/sort-enums': 0,
111
- 'perfectionist/sort-interfaces': 1,
112
- 'perfectionist/sort-intersection-types': 0,
113
- 'perfectionist/sort-jsx-props': 0,
114
- 'perfectionist/sort-object-types': 1,
115
- 'perfectionist/sort-objects': 1,
116
- 'perfectionist/sort-sets': 0,
117
- 'perfectionist/sort-svelte-attributes': 0,
118
- 'perfectionist/sort-switch-case': 1,
119
- 'perfectionist/sort-union-types': 1,
120
- 'perfectionist/sort-variable-declarations': 0,
121
- 'perfectionist/sort-vue-attributes': 0,
109
+ 'perfectionist/sort-astro-attributes': 'off',
110
+ 'perfectionist/sort-enums': 'off',
111
+ 'perfectionist/sort-interfaces': 'off',
112
+ 'perfectionist/sort-intersection-types': 'off',
113
+ 'perfectionist/sort-jsx-props': 'off',
114
+ 'perfectionist/sort-object-types': 'off',
115
+ 'perfectionist/sort-objects': 'off',
116
+ 'perfectionist/sort-sets': 'off',
117
+ 'perfectionist/sort-svelte-attributes': 'off',
118
+ 'perfectionist/sort-switch-case': 'off',
119
+ 'perfectionist/sort-union-types': 'off',
120
+ 'perfectionist/sort-variable-declarations': 'off',
121
+ 'perfectionist/sort-vue-attributes': 'off',
122
122
  };
123
123
 
124
124
  /**