eslint-plugin-th-rules 1.21.0 → 2.0.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,22 @@
1
+ ## [2.0.1](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v2.0.0...v2.0.1) (2026-01-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * modify 'lodash/import-scope' rule in base recommended configuration ([4add1ee](https://github.com/tomerh2001/eslint-plugin-th-rules/commit/4add1ee31f966875bc8c848328676819548a21fe))
7
+
8
+ # [2.0.0](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.21.0...v2.0.0) (2026-01-07)
9
+
10
+
11
+ ### Features
12
+
13
+ * moved to flat ESLint config ([4b8df27](https://github.com/tomerh2001/eslint-plugin-th-rules/commit/4b8df27d291afad906e2527c96b707c2703c64a3))
14
+
15
+
16
+ ### BREAKING CHANGES
17
+
18
+ * moved to flat ESLint config
19
+
1
20
  # [1.21.0](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.20.6...v1.21.0) (2026-01-07)
2
21
 
3
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-th-rules",
3
- "version": "1.21.0",
3
+ "version": "2.0.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
@@ -82,6 +82,8 @@ const baseRecommended = {
82
82
  'unicorn/prefer-global-this': 'off',
83
83
  'unicorn/no-thenable': 'off',
84
84
  'sonarjs/no-clear-text-protocols': 'off',
85
+
86
+ 'lodash/import-scope': [2, 'full'],
85
87
  },
86
88
  };
87
89