@darksheep/eslint 6.6.6 โ†’ 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,17 @@
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
+
3
15
  ## [6.6.6](https://github.com/DarkSheepSoftware/eslint/compare/v6.6.5...v6.6.6) (2024-11-04)
4
16
 
5
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@darksheep/eslint",
3
- "version": "6.6.6",
3
+ "version": "6.6.7",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/DarkSheepSoftware/eslint"
@@ -26,8 +26,8 @@
26
26
  "@eslint-community/eslint-plugin-eslint-comments": "4.4.1",
27
27
  "@eslint/js": "9.14.0",
28
28
  "@stylistic/eslint-plugin": "2.10.1",
29
- "@typescript-eslint/eslint-plugin": "8.12.2",
30
- "@typescript-eslint/parser": "8.12.2",
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",
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "devDependencies": {
48
48
  "@darksheep/eslint-formatter-github": "2.0.1",
49
- "@types/node": "~22.8.0",
49
+ "@types/node": "~22.9.0",
50
50
  "eslint": "~9.14.0",
51
51
  "type-fest": "~4.26.0",
52
52
  "typescript": "~5.6.0"
@@ -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
  ];