eslint-plugin-putout 30.0.0 β 30.0.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/README.md +3 -1
- package/lib/index.js +3 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -175,7 +175,9 @@ Disabled π**Putout** rules:
|
|
|
175
175
|
- β [`nodejs/remove-process-exit`](https://github.com/coderaiser/putout/tree/v29.0.0/packages/plugin-nodejs#remove-process-exit#readme);
|
|
176
176
|
- β [`typescript/remove-unused-types`](https://github.com/coderaiser/putout/tree/v24.0.2/packages/plugin-typescript#remove-unused-types#readme);
|
|
177
177
|
- β [`remove-unused-expressions`](https://github.com/coderaiser/putout/tree/v29.0.0/packages/plugin-remove-unused-expressions#readme);
|
|
178
|
-
- β [`variables`](https://github.com/coderaiser/putout/tree/v41.0.0/packages/plugin-variables#
|
|
178
|
+
- β [`variables/remove-unused`](https://github.com/coderaiser/putout/tree/v41.0.0/packages/plugin-variables#remove-unused);
|
|
179
|
+
- β [`variables/remove-useless`](https://github.com/coderaiser/putout/tree/v41.0.0/packages/plugin-variables#remove-useless);
|
|
180
|
+
- β [`variables/remove-unreferenced`](https://github.com/coderaiser/putout/tree/v41.0.0/packages/plugin-variables#remove-unreferenced);
|
|
179
181
|
- β [`remove-useless-arguments`](https://github.com/coderaiser/putout/tree/master/packages/plugin-remove-useless-arguments#readme);
|
|
180
182
|
- β [`return/remove-useless`](https://github.com/coderaiser/putout/tree/v38.0.0/packages/plugin-return#remove-useless);
|
|
181
183
|
- β [`remove-useless-spread`](https://github.com/coderaiser/putout/tree/v29.0.0/packages/plugin-remove-useless-spread/#readme);
|
package/lib/index.js
CHANGED
|
@@ -75,7 +75,9 @@ export const safeRules = {
|
|
|
75
75
|
'remove-unused-expressions': 'off',
|
|
76
76
|
'remove-unreachable-code': 'off',
|
|
77
77
|
'arguments': 'off',
|
|
78
|
-
'variables': 'off',
|
|
78
|
+
'variables/remove-unused': 'off',
|
|
79
|
+
'variables/remove-useless': 'off',
|
|
80
|
+
'variables/remove-unreferenced': 'off',
|
|
79
81
|
'return/remove-useless': 'off',
|
|
80
82
|
'remove-useless-spread': 'off',
|
|
81
83
|
'tape/remove-skip': 'off',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-putout",
|
|
3
|
-
"version": "30.0.
|
|
3
|
+
"version": "30.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "ESLint plugin for πPutout",
|
|
6
6
|
"release": false,
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@typescript-eslint/parser": "^8.3.0",
|
|
51
51
|
"align-spaces": "^2.0.0",
|
|
52
52
|
"eslint-plugin-n": "^17.0.0",
|
|
53
|
-
"eslint-plugin-putout": "^
|
|
53
|
+
"eslint-plugin-putout": "^30.0.0",
|
|
54
54
|
"eslint-plugin-react": "^7.32.2",
|
|
55
55
|
"eslint-scope": "^9.0.0",
|
|
56
56
|
"globals": "^17.0.0",
|