eslint-plugin-th-rules 1.11.1 → 1.11.3

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.11.3](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.11.2...v1.11.3) (2024-08-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Update regex pattern for disallowed comments ([afa6799](https://github.com/tomerh2001/eslint-plugin-th-rules/commit/afa679935417a2df008b111b06c8f4ebff7a1691))
7
+
8
+ ## [1.11.2](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.11.1...v1.11.2) (2024-08-19)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * allow eslint ([20f37ab](https://github.com/tomerh2001/eslint-plugin-th-rules/commit/20f37abb18100b6bf71a2631da7f02bead187a4c))
14
+
1
15
  ## [1.11.1](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.11.0...v1.11.1) (2024-08-19)
2
16
 
3
17
 
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.11.1",
3
+ "version": "1.11.3",
4
4
  "description": "A List of custom ESLint rules created by Tomer Horowitz",
5
5
  "keywords": [
6
6
  "eslint",
package/src/index.js CHANGED
@@ -30,7 +30,7 @@ configs.recommended = {
30
30
  'no-comments/disallowComments': [
31
31
  'error',
32
32
  {
33
- allow: ['eslint-disable', 'TODO', 'FIXME', 'NOTE', 'DEBUG'],
33
+ allow: ['^/\\*\\*(?:[\\s\\S]*?)\\*/$', 'eslint-disable', 'global', 'TODO', 'FIXME', 'NOTE', 'DEBUG'],
34
34
  },
35
35
  ],
36
36