eslint-plugin-th-rules 1.20.5 → 1.20.6

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.20.6](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.20.5...v1.20.6) (2026-01-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove unused eslint-disable comments and plugins from index.js ([9303787](https://github.com/tomerh2001/eslint-plugin-th-rules/commit/930378752cdd44442eda4c020c1d325769aad562))
7
+
1
8
  ## [1.20.5](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.20.4...v1.20.5) (2026-01-06)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-th-rules",
3
- "version": "1.20.5",
3
+ "version": "1.20.6",
4
4
  "description": "A List of custom ESLint rules created by Tomer Horowitz",
5
5
  "keywords": [
6
6
  "eslint",
package/src/index.js CHANGED
@@ -1,5 +1,4 @@
1
1
  /* eslint-disable import-x/order */
2
- /* eslint-disable import-x/no-extraneous-dependencies */
3
2
  /* eslint-disable n/no-path-concat */
4
3
  /* eslint-disable unicorn/prefer-module */
5
4
 
@@ -12,9 +11,6 @@ const reactPlugin = require('eslint-plugin-react');
12
11
  const reactHooks = require('eslint-plugin-react-hooks');
13
12
  const tseslint = require('typescript-eslint');
14
13
 
15
- // Plugins referenced by rule names in this config
16
- const unicornPlugin = require('eslint-plugin-unicorn');
17
- const importPlugin = require('eslint-plugin-import');
18
14
  const nPlugin = require('eslint-plugin-n');
19
15
  const sonarjsPlugin = require('eslint-plugin-sonarjs');
20
16
  const securityPlugin = require('eslint-plugin-security');
@@ -39,8 +35,6 @@ const baseRecommended = {
39
35
  'th-rules': plugin,
40
36
 
41
37
  // Third-party plugins used by rule names below
42
- unicorn: unicornPlugin,
43
- import: importPlugin,
44
38
  n: nPlugin,
45
39
  sonarjs: sonarjsPlugin,
46
40
  security: securityPlugin,