eslint-plugin-th-rules 1.14.0 → 1.14.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,10 @@
1
+ ## [1.14.1](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.14.0...v1.14.1) (2024-12-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update dependencies and disable specific ESLint rules ([9cb636b](https://github.com/tomerh2001/eslint-plugin-th-rules/commit/9cb636b127add46aaa8926a73fdbd0e49f897c0e))
7
+
1
8
  # [1.14.0](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.13.4...v1.14.0) (2024-09-11)
2
9
 
3
10
 
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.14.0",
3
+ "version": "1.14.1",
4
4
  "description": "A List of custom ESLint rules created by Tomer Horowitz",
5
5
  "keywords": [
6
6
  "eslint",
@@ -18,47 +18,47 @@
18
18
  "update:eslint-docs": "eslint-doc-generator"
19
19
  },
20
20
  "dependencies": {
21
- "@babel/eslint-parser": "^7.25.1",
21
+ "@babel/eslint-parser": "^7.25.9",
22
22
  "eslint-config-jsdoc": "^15.4.0",
23
23
  "eslint-config-xo": "^0.46.0",
24
24
  "eslint-config-xo-react": "^0.27.0",
25
- "eslint-plugin-jsdoc": "^50.2.2",
26
- "eslint-plugin-react": "^7.35.2",
27
- "eslint-plugin-react-hooks": "^4.6.2",
28
- "eslint-plugin-react-native": "^4.1.0",
25
+ "eslint-plugin-jsdoc": "^50.6.1",
26
+ "eslint-plugin-react": "^7.37.3",
27
+ "eslint-plugin-react-hooks": "^5.1.0",
28
+ "eslint-plugin-react-native": "^5.0.0",
29
29
  "eslint-plugin-security": "^3.0.1",
30
- "eslint-plugin-sonarjs": "^2.0.2",
30
+ "eslint-plugin-sonarjs": "^3.0.1",
31
31
  "requireindex": "^1.2.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@codedependant/semantic-release-docker": "^5.0.3",
35
- "@eslint/js": "^9.10.0",
34
+ "@codedependant/semantic-release-docker": "^5.1.0",
35
+ "@eslint/js": "^9.17.0",
36
36
  "@semantic-release/changelog": "^6.0.3",
37
37
  "@semantic-release/commit-analyzer": "^13.0.0",
38
38
  "@semantic-release/git": "^10.0.1",
39
- "@semantic-release/github": "^10.3.3",
39
+ "@semantic-release/github": "^11.0.1",
40
40
  "@semantic-release/npm": "^12.0.1",
41
- "@semantic-release/release-notes-generator": "^14.0.1",
41
+ "@semantic-release/release-notes-generator": "^14.0.2",
42
42
  "@types/eslint-plugin-security": "^3.0.0",
43
43
  "@types/eslint__js": "^8.42.3",
44
44
  "@types/requireindex": "^1.2.4",
45
45
  "@types/xo": "^0.39.9",
46
46
  "bun-types": "latest",
47
- "eslint": "^9.10.0",
48
- "eslint-doc-generator": "^1.7.1",
49
- "eslint-plugin-eslint-plugin": "^6.2.0",
47
+ "eslint": "^9.17.0",
48
+ "eslint-doc-generator": "^2.0.2",
49
+ "eslint-plugin-eslint-plugin": "^6.4.0",
50
50
  "eslint-plugin-node": "^11.1.0",
51
- "eslint-plugin-sonarjs": "^2.0.2",
52
- "eslint-plugin-unicorn": "^55.0.0",
53
- "mocha": "^10.7.3",
51
+ "eslint-plugin-sonarjs": "^3.0.1",
52
+ "eslint-plugin-unicorn": "^56.0.1",
53
+ "mocha": "^11.0.1",
54
54
  "npm-run-all": "^4.1.5",
55
- "typescript": "^5.6.2",
56
- "typescript-eslint": "^8.5.0",
57
- "xo": "^0.59.3"
55
+ "typescript": "^5.7.2",
56
+ "typescript-eslint": "^8.19.0",
57
+ "xo": "^0.60.0"
58
58
  },
59
59
  "peerDependencies": {
60
- "eslint": ">=9.10.0",
61
- "typescript": "^5.6.2"
60
+ "eslint": ">=9.17.0",
61
+ "typescript": "^5.7.2"
62
62
  },
63
63
  "license": "ISC",
64
64
  "packageManager": "yarn@4.4.0"
package/src/index.js CHANGED
@@ -29,6 +29,11 @@ const configs = {
29
29
  'n/file-extension-in-import': 'off',
30
30
  'import/no-cycle': 'off',
31
31
  camelcase: 'warn',
32
+ 'sonarjs/mouse-events-a11y': 'off',
33
+ 'sonarjs/no-unstable-nested-components': 'off',
34
+ 'unicorn/prefer-global-this': 'off',
35
+ 'unicorn/no-thenable': 'off',
36
+ 'sonarjs/no-clear-text-protocols': 'off',
32
37
  },
33
38
  env: {
34
39
  node: true,
@@ -69,6 +74,7 @@ for (const configName of Object.keys(configs)) {
69
74
  ],
70
75
  rules: {
71
76
  ...configs[configName].rules,
77
+ 'n/prefer-global/process': 'off',
72
78
  },
73
79
  };
74
80
  }