eslint-plugin-th-rules 1.20.5 → 1.20.6
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 +1 -1
- package/src/index.js +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.20.6](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.20.5...v1.20.6) (2026-01-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove unused eslint-disable comments and plugins from index.js ([9303787](https://github.com/tomerh2001/eslint-plugin-th-rules/commit/930378752cdd44442eda4c020c1d325769aad562))
|
|
7
|
+
|
|
1
8
|
## [1.20.5](https://github.com/tomerh2001/eslint-plugin-th-rules/compare/v1.20.4...v1.20.5) (2026-01-06)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/* eslint-disable import-x/order */
|
|
2
|
-
/* eslint-disable import-x/no-extraneous-dependencies */
|
|
3
2
|
/* eslint-disable n/no-path-concat */
|
|
4
3
|
/* eslint-disable unicorn/prefer-module */
|
|
5
4
|
|
|
@@ -12,9 +11,6 @@ const reactPlugin = require('eslint-plugin-react');
|
|
|
12
11
|
const reactHooks = require('eslint-plugin-react-hooks');
|
|
13
12
|
const tseslint = require('typescript-eslint');
|
|
14
13
|
|
|
15
|
-
// Plugins referenced by rule names in this config
|
|
16
|
-
const unicornPlugin = require('eslint-plugin-unicorn');
|
|
17
|
-
const importPlugin = require('eslint-plugin-import');
|
|
18
14
|
const nPlugin = require('eslint-plugin-n');
|
|
19
15
|
const sonarjsPlugin = require('eslint-plugin-sonarjs');
|
|
20
16
|
const securityPlugin = require('eslint-plugin-security');
|
|
@@ -39,8 +35,6 @@ const baseRecommended = {
|
|
|
39
35
|
'th-rules': plugin,
|
|
40
36
|
|
|
41
37
|
// Third-party plugins used by rule names below
|
|
42
|
-
unicorn: unicornPlugin,
|
|
43
|
-
import: importPlugin,
|
|
44
38
|
n: nPlugin,
|
|
45
39
|
sonarjs: sonarjsPlugin,
|
|
46
40
|
security: securityPlugin,
|