eslint-plugin-th-rules 2.0.2 → 2.0.4

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,17 @@
1
+ ## [2.0.4](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v2.0.3...v2.0.4) (2026-01-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * disable 'security/detect-unsafe-regex' rule in base recommended configuration ([9e8489c](https://github.com/tomerh2001/eslint-plugin-th-rules/commit/9e8489cc627fb6de8884f5c95375165a0416e1c1))
7
+
8
+ ## [2.0.3](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v2.0.2...v2.0.3) (2026-01-08)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * update dependencies for improved compatibility ([9415af9](https://github.com/tomerh2001/eslint-plugin-th-rules/commit/9415af9ac3ad24fcd606b7ed5455bf307c55fb69))
14
+
1
15
  ## [2.0.2](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v2.0.1...v2.0.2) (2026-01-07)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-th-rules",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "description": "A List of custom ESLint rules created by Tomer Horowitz",
5
5
  "keywords": [
6
6
  "eslint",
package/src/index.js CHANGED
@@ -82,7 +82,7 @@ const baseRecommended = {
82
82
  'unicorn/prefer-global-this': 'off',
83
83
  'unicorn/no-thenable': 'off',
84
84
  'sonarjs/no-clear-text-protocols': 'off',
85
-
85
+ 'security/detect-unsafe-regex': 'off',
86
86
  'lodash/import-scope': [2, 'full'],
87
87
  },
88
88
  };
@@ -130,6 +130,7 @@ plugin.configs['recommended-react'] = flatConfigs(
130
130
  {
131
131
  rules: {
132
132
  'n/prefer-global/process': 'off',
133
+ 'react-hooks/set-state-in-effect': 'off',
133
134
  },
134
135
  },
135
136
  );