eslint-plugin-th-rules 1.13.2 → 1.13.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 +7 -0
- package/README.md +1 -0
- package/bun.lockb +0 -0
- package/package.json +1 -1
- package/src/index.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.13.3](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.13.2...v1.13.3) (2024-08-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* removed named functions ([a1c87b0](https://github.com/tomerh2001/eslint-plugin-th-rules/commit/a1c87b02dbb478d953f972bc95df3a2888b5e28b))
|
|
7
|
+
|
|
1
8
|
## [1.13.2](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.13.1...v1.13.2) (2024-08-19)
|
|
2
9
|
|
|
3
10
|
|
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
package/src/index.js
CHANGED
|
@@ -19,7 +19,6 @@ configs.recommended = {
|
|
|
19
19
|
'th-rules/no-destructuring': 'error',
|
|
20
20
|
'th-rules/no-default-export': 'error',
|
|
21
21
|
'th-rules/no-comments': 'error',
|
|
22
|
-
'th-rules/named-functions': 'error',
|
|
23
22
|
'unicorn/prefer-module': 'warn',
|
|
24
23
|
'unicorn/filename-case': 'off',
|
|
25
24
|
'unicorn/no-array-callback-reference': 'off',
|