eslint-plugin-th-rules 1.19.0 → 1.19.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,3 +1,10 @@
1
+ ## [1.19.1](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.19.0...v1.19.1) (2026-01-05)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove jsdoc plugin from recommended configs and clean up extends ([de220ac](https://github.com/tomerh2001/eslint-plugin-th-rules/commit/de220acd3d0c80340c7ee9b5bc2bfe2967c1c4c5))
7
+
1
8
  # [1.19.0](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.18.0...v1.19.0) (2026-01-05)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-th-rules",
3
- "version": "1.19.0",
3
+ "version": "1.19.1",
4
4
  "description": "A List of custom ESLint rules created by Tomer Horowitz",
5
5
  "keywords": [
6
6
  "eslint",
package/src/index.js CHANGED
@@ -9,12 +9,10 @@ const configs = {
9
9
  plugins: [
10
10
  'th-rules',
11
11
  'sonarjs',
12
- 'jsdoc',
13
12
  ],
14
13
  extends: [
15
14
  'plugin:sonarjs/recommended-legacy',
16
15
  'plugin:security/recommended-legacy',
17
- 'plugin:jsdoc/recommended',
18
16
  ],
19
17
  rules: {
20
18
  'th-rules/no-destructuring': 'error',
@@ -24,7 +22,6 @@ const configs = {
24
22
  'th-rules/styles-in-styles-file': 'error',
25
23
  'th-rules/schemas-in-schemas-file': 'error',
26
24
  'th-rules/types-in-dts': 'error',
27
-
28
25
  'unicorn/prefer-module': 'warn',
29
26
  'unicorn/filename-case': 'off',
30
27
  'unicorn/no-array-callback-reference': 'off',
@@ -56,10 +53,7 @@ for (const configName of Object.keys(configs)) {
56
53
  extends: [
57
54
  'plugin:@typescript-eslint/strict-type-checked',
58
55
  'plugin:@typescript-eslint/stylistic-type-checked',
59
-
60
- ...configs[configName].extends
61
- .filter(x => x !== 'plugin:jsdoc/recommended'),
62
- 'plugin:jsdoc/recommended-typescript',
56
+ ...configs[configName].extends,
63
57
  ],
64
58
  rules: {
65
59
  ...configs[configName].rules,
@@ -75,7 +69,6 @@ for (const configName of Object.keys(configs)) {
75
69
  '@typescript-eslint/no-unsafe-argument': 'off',
76
70
  },
77
71
  };
78
-
79
72
  configs[`${configName}-react`] = {
80
73
  ...configs[configName],
81
74
  extends: [