@darksheep/eslint 6.6.5 โ†’ 6.6.7

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,26 @@
1
1
  # Changelog
2
2
 
3
+ ## [6.6.7](https://github.com/DarkSheepSoftware/eslint/compare/v6.6.6...v6.6.7) (2024-11-05)
4
+
5
+
6
+ ### ๐Ÿ“ฆ Dependencies
7
+
8
+ * **pkg:** update typescript-eslint monorepo to v8.13.0 ([#719](https://github.com/DarkSheepSoftware/eslint/issues/719)) ([4ff3b39](https://github.com/DarkSheepSoftware/eslint/commit/4ff3b397b92197934a2fca2a81f7098a8dde6bfb))
9
+
10
+
11
+ ### ๐Ÿงน Chores
12
+
13
+ * Remove require returns from jsx ([71acf41](https://github.com/DarkSheepSoftware/eslint/commit/71acf41403e7130555bb3c90fe7c800680f021fb))
14
+
15
+ ## [6.6.6](https://github.com/DarkSheepSoftware/eslint/compare/v6.6.5...v6.6.6) (2024-11-04)
16
+
17
+
18
+ ### ๐Ÿ“ฆ Dependencies
19
+
20
+ * **pkg:** update dependency @stylistic/eslint-plugin to v2.10.1 ([#713](https://github.com/DarkSheepSoftware/eslint/issues/713)) ([4694e90](https://github.com/DarkSheepSoftware/eslint/commit/4694e903264c6029be5eedc50d9256b96df9874d))
21
+ * **pkg:** update dependency eslint-plugin-yml to v1.15.0 ([#715](https://github.com/DarkSheepSoftware/eslint/issues/715)) ([5d6f2fe](https://github.com/DarkSheepSoftware/eslint/commit/5d6f2fefe8827c05e1e27358381a711f1598a9fe))
22
+ * **pkg:** update eslint monorepo to v9.14.0 ([#716](https://github.com/DarkSheepSoftware/eslint/issues/716)) ([96c7b8c](https://github.com/DarkSheepSoftware/eslint/commit/96c7b8c57e2e8f5c5eded21efc3d97794158276f))
23
+
3
24
  ## [6.6.5](https://github.com/DarkSheepSoftware/eslint/compare/v6.6.4...v6.6.5) (2024-10-30)
4
25
 
5
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@darksheep/eslint",
3
- "version": "6.6.5",
3
+ "version": "6.6.7",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/DarkSheepSoftware/eslint"
@@ -24,10 +24,10 @@
24
24
  "dependencies": {
25
25
  "@darksheep/environment": "3.1.0",
26
26
  "@eslint-community/eslint-plugin-eslint-comments": "4.4.1",
27
- "@eslint/js": "9.13.0",
28
- "@stylistic/eslint-plugin": "2.9.0",
29
- "@typescript-eslint/eslint-plugin": "8.12.2",
30
- "@typescript-eslint/parser": "8.12.2",
27
+ "@eslint/js": "9.14.0",
28
+ "@stylistic/eslint-plugin": "2.10.1",
29
+ "@typescript-eslint/eslint-plugin": "8.13.0",
30
+ "@typescript-eslint/parser": "8.13.0",
31
31
  "editorconfig": "2.0.0",
32
32
  "eslint-plugin-jsdoc": "50.4.3",
33
33
  "eslint-plugin-jsonc": "2.16.0",
@@ -40,14 +40,14 @@
40
40
  "eslint-plugin-security": "3.0.1",
41
41
  "eslint-plugin-unicorn": "56.0.0",
42
42
  "eslint-plugin-unused-imports": "4.1.4",
43
- "eslint-plugin-yml": "1.14.0",
43
+ "eslint-plugin-yml": "1.15.0",
44
44
  "jsonc-eslint-parser": "2.4.0",
45
45
  "yaml-eslint-parser": "1.2.3"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@darksheep/eslint-formatter-github": "2.0.1",
49
- "@types/node": "~22.8.0",
50
- "eslint": "~9.13.0",
49
+ "@types/node": "~22.9.0",
50
+ "eslint": "~9.14.0",
51
51
  "type-fest": "~4.26.0",
52
52
  "typescript": "~5.6.0"
53
53
  },
@@ -93,7 +93,13 @@ export async function createEslintJSDocConfig(root) {
93
93
  'jsdoc/require-param-type': 'off',
94
94
  'jsdoc/require-property-type': 'off',
95
95
  'jsdoc/require-returns-type': 'off',
96
-
96
+ },
97
+ },
98
+ {
99
+ name: 'jsdoc/jsx',
100
+ files: [ '**/*.jsx', '**/*.tsx' ],
101
+ rules: {
102
+ 'jsdoc/require-returns': 'off', // This is to allow for JSX.Element to not be required...
97
103
  },
98
104
  },
99
105
  ];