eslint-plugin-th-rules 2.0.4 → 2.1.0
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 +7 -0
- package/package.json +4 -2
- package/src/index.js +2 -0
- package/xo.config.ts +2 -0
- package/.xo-config.json +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [2.1.0](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v2.0.4...v2.1.0) (2026-01-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* migrate to ES module syntax and update dependencies; remove unused config ([b225e2c](https://github.com/tomerh2001/eslint-plugin-th-rules/commit/b225e2c0260152009c011a5b445ed2c67f665ce5))
|
|
7
|
+
|
|
1
8
|
## [2.0.4](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v2.0.3...v2.0.4) (2026-01-08)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-th-rules",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "A List of custom ESLint rules created by Tomer Horowitz",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"eslint-plugin-sonarjs": "^3.0.5",
|
|
35
35
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
36
36
|
"globals": "^17.0.0",
|
|
37
|
+
"lodash": "^4.17.21",
|
|
37
38
|
"requireindex": "^1.2.0"
|
|
38
39
|
},
|
|
39
40
|
"devDependencies": {
|
|
@@ -47,6 +48,7 @@
|
|
|
47
48
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
48
49
|
"@types/eslint-plugin-security": "^3.0.0",
|
|
49
50
|
"@types/eslint__js": "^9.14.0",
|
|
51
|
+
"@types/lodash": "^4",
|
|
50
52
|
"@types/requireindex": "^1.2.4",
|
|
51
53
|
"@types/xo": "^0.39.9",
|
|
52
54
|
"bun-types": "latest",
|
|
@@ -54,7 +56,7 @@
|
|
|
54
56
|
"eslint-doc-generator": "^3.0.2",
|
|
55
57
|
"eslint-plugin-eslint-plugin": "^7.2.0",
|
|
56
58
|
"eslint-plugin-node": "^11.1.0",
|
|
57
|
-
"eslint-plugin-th-rules": "
|
|
59
|
+
"eslint-plugin-th-rules": "2.0.4",
|
|
58
60
|
"mocha": "^11.7.5",
|
|
59
61
|
"npm-run-all": "^4.1.5",
|
|
60
62
|
"typescript": "^5.9.3",
|
package/src/index.js
CHANGED
package/xo.config.ts
ADDED