eslint-plugin-putout 11.16.1 → 11.17.0
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 +11 -10
- package/lib/index.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -103,14 +103,15 @@ When using `putout` in IDE with `--fix` on save, or when you want to disable the
|
|
|
103
103
|
|
|
104
104
|
List of disabled `putout` rules:
|
|
105
105
|
|
|
106
|
-
- [remove-empty](https://github.com/coderaiser/putout/tree/
|
|
107
|
-
- [remove-unused-variables](https://github.com/coderaiser/putout/tree/
|
|
108
|
-
- [remove-unused-types](https://github.com/coderaiser/putout/tree/
|
|
109
|
-
- [remove-unused-for-of-variables](https://github.com/coderaiser/putout/tree/
|
|
110
|
-
- [remove-unused-expressions](https://github.com/coderaiser/putout/tree/
|
|
106
|
+
- [remove-empty](https://github.com/coderaiser/putout/tree/v22.0.0/packages/plugin-remove-empty);
|
|
107
|
+
- [remove-unused-variables](https://github.com/coderaiser/putout/tree/v22.0.0/packages/remove-unused-variables);
|
|
108
|
+
- [remove-unused-types](https://github.com/coderaiser/putout/tree/v22.0.0/packages/remove-unused-types);
|
|
109
|
+
- [remove-unused-for-of-variables](https://github.com/coderaiser/putout/tree/v22.0.0/packages/remove-unused-for-of-variables);
|
|
110
|
+
- [remove-unused-expressions](https://github.com/coderaiser/putout/tree/v22.0.0/packages);
|
|
111
111
|
- [remove-useless-return](https://github.com/coderaiser/putout/tree/master/remove-useless-return);
|
|
112
|
-
- [remove-skip](https://github.com/coderaiser/putout/tree/
|
|
113
|
-
- [remove-only](https://github.com/coderaiser/putout/tree/
|
|
114
|
-
- [remove-console](https://github.com/coderaiser/putout/tree/
|
|
115
|
-
- [remove-debugger](https://github.com/coderaiser/putout/tree/
|
|
116
|
-
- [
|
|
112
|
+
- [remove-skip](https://github.com/coderaiser/putout/tree/v22.0.0/packages/remove-skip);
|
|
113
|
+
- [remove-only](https://github.com/coderaiser/putout/tree/v22.0.0/packages/remove-only);
|
|
114
|
+
- [remove-console](https://github.com/coderaiser/putout/tree/v22.0.0/packages/remove-console);
|
|
115
|
+
- [remove-debugger](https://github.com/coderaiser/putout/tree/v22.0.0/packages/remove-debugger);
|
|
116
|
+
- [remove-unreachable-code](https://github.com/coderaiser/putout/tree/v22.0.0/packages/remove-unreachable-code);
|
|
117
|
+
- [convert-for-to-for-of](https://github.com/coderaiser/putout/tree/v22.0.0/packages/convert-for-to-for-of);
|
package/lib/index.js
CHANGED
|
@@ -105,6 +105,7 @@ const safe = {
|
|
|
105
105
|
'remove-unused-variables': 'off',
|
|
106
106
|
'remove-unused-expressions': 'off',
|
|
107
107
|
'remove-unused-for-of-variables': 'off',
|
|
108
|
+
'remove-unreachable-code': 'off',
|
|
108
109
|
'remove-useless-return': 'off',
|
|
109
110
|
'tape/remove-skip': 'off',
|
|
110
111
|
'tape/remove-only': 'off',
|