eslint-plugin-th-rules 1.13.2 → 1.13.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
+ ## [1.13.4](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.13.3...v1.13.4) (2024-08-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Remove no-comments from plugins list ([e3df83f](https://github.com/tomerh2001/eslint-plugin-th-rules/commit/e3df83ff4e6a0497058b4080bb884d340f58fc13))
7
+
8
+ ## [1.13.3](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.13.2...v1.13.3) (2024-08-21)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * removed named functions ([a1c87b0](https://github.com/tomerh2001/eslint-plugin-th-rules/commit/a1c87b02dbb478d953f972bc95df3a2888b5e28b))
14
+
1
15
  ## [1.13.2](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.13.1...v1.13.2) (2024-08-19)
2
16
 
3
17
 
package/README.md CHANGED
@@ -25,3 +25,4 @@ This repository contains custom ESLint rules to enhance code quality and consist
25
25
  | [no-destructuring](docs/rules/no-destructuring.md) | Disallow destructuring that does not meet certain conditions | ✅ ![badge-recommended-typescript][] | |
26
26
 
27
27
  <!-- end auto-generated rules list -->
28
+
package/bun.lockb CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-th-rules",
3
- "version": "1.13.2",
3
+ "version": "1.13.4",
4
4
  "description": "A List of custom ESLint rules created by Tomer Horowitz",
5
5
  "keywords": [
6
6
  "eslint",
@@ -28,7 +28,6 @@
28
28
  "eslint-plugin-react-native": "^4.1.0",
29
29
  "eslint-plugin-security": "^3.0.1",
30
30
  "eslint-plugin-sonarjs": "^1.0.4",
31
- "eslint-plugin-th-rules": "^1.12.0",
32
31
  "requireindex": "^1.2.0"
33
32
  },
34
33
  "devDependencies": {
@@ -37,7 +36,7 @@
37
36
  "@semantic-release/changelog": "^6.0.3",
38
37
  "@semantic-release/commit-analyzer": "^13.0.0",
39
38
  "@semantic-release/git": "^10.0.1",
40
- "@semantic-release/github": "^10.1.6",
39
+ "@semantic-release/github": "^10.1.7",
41
40
  "@semantic-release/npm": "^12.0.1",
42
41
  "@semantic-release/release-notes-generator": "^14.0.1",
43
42
  "@types/eslint-plugin-security": "^3.0.0",
@@ -54,7 +53,7 @@
54
53
  "mocha": "^10.7.3",
55
54
  "npm-run-all": "^4.1.5",
56
55
  "typescript": "^5.5.4",
57
- "typescript-eslint": "^8.1.0",
56
+ "typescript-eslint": "^8.2.0",
58
57
  "xo": "^0.59.3"
59
58
  },
60
59
  "peerDependencies": {
package/src/index.js CHANGED
@@ -9,7 +9,6 @@ configs.recommended = {
9
9
  plugins: [
10
10
  'th-rules',
11
11
  'sonarjs',
12
- 'no-comments',
13
12
  ],
14
13
  extends: [
15
14
  'plugin:sonarjs/recommended-legacy',
@@ -19,7 +18,6 @@ configs.recommended = {
19
18
  'th-rules/no-destructuring': 'error',
20
19
  'th-rules/no-default-export': 'error',
21
20
  'th-rules/no-comments': 'error',
22
- 'th-rules/named-functions': 'error',
23
21
  'unicorn/prefer-module': 'warn',
24
22
  'unicorn/filename-case': 'off',
25
23
  'unicorn/no-array-callback-reference': 'off',
package/.xo-config.json DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "extends": [
3
- "plugin:th-rules/recommended-typescript"
4
- ]
5
- }