@darksheep/eslint 4.3.0 → 4.3.2

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,29 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.3.2](https://github.com/DarkSheepSoftware/eslint/compare/v4.3.1...v4.3.2) (2024-03-16)
4
+
5
+
6
+ ### 📦 Dependencies
7
+
8
+ * **dev:** update dependency @types/node to v20.11.27 ([#298](https://github.com/DarkSheepSoftware/eslint/issues/298)) ([cd52cfd](https://github.com/DarkSheepSoftware/eslint/commit/cd52cfd045e141ee4cb9c9cc1c587eb89dd1d2ec))
9
+ * **dev:** update dependency @types/node to v20.11.28 ([#301](https://github.com/DarkSheepSoftware/eslint/issues/301)) ([5859df7](https://github.com/DarkSheepSoftware/eslint/commit/5859df7521083439d07a143d3c4cd89f20600426))
10
+ * **pkg:** update dependency @stylistic/eslint-plugin to ~1.7.0 ([#300](https://github.com/DarkSheepSoftware/eslint/issues/300)) ([cd40406](https://github.com/DarkSheepSoftware/eslint/commit/cd40406223b4e1513e38a2f59a23cef873b59c01))
11
+ * **pkg:** update dependency eslint-plugin-react to v7.34.1 ([#302](https://github.com/DarkSheepSoftware/eslint/issues/302)) ([02d6443](https://github.com/DarkSheepSoftware/eslint/commit/02d644385cef9d0f99ea62a8cbbfff65557fa14d))
12
+
13
+ ## [4.3.1](https://github.com/DarkSheepSoftware/eslint/compare/v4.3.0...v4.3.1) (2024-03-12)
14
+
15
+
16
+ ### 🐛 Fixes
17
+
18
+ * Invalid version range for workspace dependency ([#297](https://github.com/DarkSheepSoftware/eslint/issues/297)) ([554a5f9](https://github.com/DarkSheepSoftware/eslint/commit/554a5f917543f377d95cb213777357e3afc94890))
19
+
20
+
21
+ ### 📦 Dependencies
22
+
23
+ * **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))
24
+ * **lock:** lock file maintenance ([#293](https://github.com/DarkSheepSoftware/eslint/issues/293)) ([fb65e9d](https://github.com/DarkSheepSoftware/eslint/commit/fb65e9d1f55b035e1478a647666db48598a62138))
25
+ * **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))
26
+
3
27
  ## [4.3.0](https://github.com/DarkSheepSoftware/eslint/compare/v4.2.1...v4.3.0) (2024-03-09)
4
28
 
5
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@darksheep/eslint",
3
- "version": "4.3.0",
3
+ "version": "4.3.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/DarkSheepSoftware/eslint"
@@ -25,9 +25,9 @@
25
25
  "@eslint-community/eslint-plugin-eslint-comments": "~4.1.0",
26
26
  "@eslint/eslintrc": "~3.0.0",
27
27
  "@eslint/js": "~8.57.0",
28
- "@stylistic/eslint-plugin": "~1.6.0",
29
- "@typescript-eslint/eslint-plugin": "~7.1.0",
30
- "@typescript-eslint/parser": "~7.1.0",
28
+ "@stylistic/eslint-plugin": "~1.7.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
  },