@darksheep/eslint 6.6.6 โ†’ 6.6.8

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.8](https://github.com/DarkSheepSoftware/eslint/compare/v6.6.7...v6.6.8) (2024-11-07)
4
+
5
+
6
+ ### ๐Ÿ“ฆ Dependencies
7
+
8
+ * **pkg:** update dependency eslint-plugin-n to v17.13.0 ([#723](https://github.com/DarkSheepSoftware/eslint/issues/723)) ([1e34f7d](https://github.com/DarkSheepSoftware/eslint/commit/1e34f7d8b6c47fc87413758bcc3a2e3a7d9db81b))
9
+ * **pkg:** update dependency eslint-plugin-n to v17.13.1 ([#725](https://github.com/DarkSheepSoftware/eslint/issues/725)) ([f4d266e](https://github.com/DarkSheepSoftware/eslint/commit/f4d266e85faf59b4a56018caf7f9fc24394046ab))
10
+ * **pkg:** update dependency eslint-plugin-package-json to v0.15.5 ([#722](https://github.com/DarkSheepSoftware/eslint/issues/722)) ([c4a162a](https://github.com/DarkSheepSoftware/eslint/commit/c4a162a1573921191c7f03f02b185217634e69c0))
11
+
12
+ ## [6.6.7](https://github.com/DarkSheepSoftware/eslint/compare/v6.6.6...v6.6.7) (2024-11-05)
13
+
14
+
15
+ ### ๐Ÿ“ฆ Dependencies
16
+
17
+ * **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))
18
+
19
+
20
+ ### ๐Ÿงน Chores
21
+
22
+ * Remove require returns from jsx ([71acf41](https://github.com/DarkSheepSoftware/eslint/commit/71acf41403e7130555bb3c90fe7c800680f021fb))
23
+
3
24
  ## [6.6.6](https://github.com/DarkSheepSoftware/eslint/compare/v6.6.5...v6.6.6) (2024-11-04)
4
25
 
5
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@darksheep/eslint",
3
- "version": "6.6.6",
3
+ "version": "6.6.8",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/DarkSheepSoftware/eslint"
@@ -26,13 +26,13 @@
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",
34
- "eslint-plugin-n": "17.12.0",
35
- "eslint-plugin-package-json": "0.15.4",
34
+ "eslint-plugin-n": "17.13.1",
35
+ "eslint-plugin-package-json": "0.15.5",
36
36
  "eslint-plugin-perfectionist": "3.9.1",
37
37
  "eslint-plugin-promise": "7.1.0",
38
38
  "eslint-plugin-react": "7.37.2",
@@ -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
  ];