@darksheep/eslint 4.3.0 → 4.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.3.1](https://github.com/DarkSheepSoftware/eslint/compare/v4.3.0...v4.3.1) (2024-03-12)
4
+
5
+
6
+ ### 🐛 Fixes
7
+
8
+ * Invalid version range for workspace dependency ([#297](https://github.com/DarkSheepSoftware/eslint/issues/297)) ([554a5f9](https://github.com/DarkSheepSoftware/eslint/commit/554a5f917543f377d95cb213777357e3afc94890))
9
+
10
+
11
+ ### 📦 Dependencies
12
+
13
+ * **dev:** update dependency @types/node to v20.11.26 ([#295](https://github.com/DarkSheepSoftware/eslint/issues/295)) ([0dc2c8a](https://github.com/DarkSheepSoftware/eslint/commit/0dc2c8a42f808b71cec5f606cf4712ed95053e8f))
14
+ * **lock:** lock file maintenance ([#293](https://github.com/DarkSheepSoftware/eslint/issues/293)) ([fb65e9d](https://github.com/DarkSheepSoftware/eslint/commit/fb65e9d1f55b035e1478a647666db48598a62138))
15
+ * **pkg:** update typescript-eslint monorepo to ~7.2.0 ([#294](https://github.com/DarkSheepSoftware/eslint/issues/294)) ([6625d25](https://github.com/DarkSheepSoftware/eslint/commit/6625d252ac8b58e753ad870a5c3ff13e233593a9))
16
+
3
17
  ## [4.3.0](https://github.com/DarkSheepSoftware/eslint/compare/v4.2.1...v4.3.0) (2024-03-09)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@darksheep/eslint",
3
- "version": "4.3.0",
3
+ "version": "4.3.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/DarkSheepSoftware/eslint"
@@ -26,8 +26,8 @@
26
26
  "@eslint/eslintrc": "~3.0.0",
27
27
  "@eslint/js": "~8.57.0",
28
28
  "@stylistic/eslint-plugin": "~1.6.0",
29
- "@typescript-eslint/eslint-plugin": "~7.1.0",
30
- "@typescript-eslint/parser": "~7.1.0",
29
+ "@typescript-eslint/eslint-plugin": "~7.2.0",
30
+ "@typescript-eslint/parser": "~7.2.0",
31
31
  "editorconfig": "~2.0.0",
32
32
  "eslint": "~8.57.0",
33
33
  "eslint-import-resolver-typescript": "~3.6.1",
@@ -18,12 +18,15 @@ export async function createEslintJsonFilesConfig() {
18
18
  '@package-json/order-properties': [ 'error', { order: 'sort-package-json' } ],
19
19
  '@package-json/sort-collections': 'error',
20
20
 
21
+ // Seems to break renovate finding changelogs
21
22
  '@package-json/prefer-repository-shorthand': 'off',
23
+ // Breaks workspace dependency linking
24
+ // Invalid version range for dependency @darksheep/clone: workspace:~
25
+ '@package-json/valid-package-def': 'off',
22
26
 
23
27
  '@package-json/unique-dependencies': 'error',
24
28
  '@package-json/valid-local-dependency': 'error',
25
29
  '@package-json/valid-name': 'error',
26
- '@package-json/valid-package-def': 'error',
27
30
  '@package-json/valid-repository-directory': 'error',
28
31
  '@package-json/valid-version': 'error',
29
32
  },