eslint-plugin-putout 13.3.0 → 13.4.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 CHANGED
@@ -103,10 +103,6 @@ When using 🐊`Putout` in IDE with `--fix` on save, or when you want to disable
103
103
  }
104
104
  ```
105
105
 
106
- ### safe+align
107
-
108
- When you want to enable ability to align spaces on empty lines, use `safe+align`.
109
-
110
106
  Disabled `ESLint` rules:
111
107
 
112
108
  - [`no-useless-return`](https://eslint.org/docs/rules/no-useless-return)
@@ -122,9 +118,15 @@ Disabled 🐊`Putout` rules:
122
118
  - [`remove-unused-expressions`](https://github.com/coderaiser/putout/tree/v24.0.0/packages);
123
119
  - [`remove-useless-return`](https://github.com/coderaiser/putout/tree/master/remove-useless-return);
124
120
  - [`remove-useless-arguments`](https://github.com/coderaiser/putout/tree/master/remove-useless-arguments);
121
+ - [`remove-useless-variables/rename`](https://github.com/coderaiser/putout/tree/master/remove-useless-arguments#rename);
125
122
  - [`remove-skip`](https://github.com/coderaiser/putout/tree/v24.0.0/packages/remove-skip);
126
123
  - [`remove-only`](https://github.com/coderaiser/putout/tree/v24.0.0/packages/remove-only);
127
124
  - [`remove-console`](https://github.com/coderaiser/putout/tree/v24.0.0/packages/remove-console);
128
125
  - [`remove-debugger`](https://github.com/coderaiser/putout/tree/v24.0.0/packages/remove-debugger);
129
126
  - [`remove-unreachable-code`](https://github.com/coderaiser/putout/tree/v24.0.0/packages/remove-unreachable-code);
130
127
  - [`convert-for-to-for-of`](https://github.com/coderaiser/putout/tree/v24.0.0/packages/convert-for-to-for-of);
128
+
129
+ ### safe+align
130
+
131
+ When you want to enable ability to align spaces on empty lines, while have all benefits of `safe` preset: use `safe+align`.
132
+
package/lib/index.js CHANGED
@@ -113,6 +113,7 @@ const safe = {
113
113
  'remove-unreachable-code': 'off',
114
114
  'remove-useless-return': 'off',
115
115
  'remove-useless-arguments': 'off',
116
+ 'remove-useless-variables/rename': 'off',
116
117
  'tape/remove-skip': 'off',
117
118
  'tape/remove-only': 'off',
118
119
  'remove-console': 'off',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-putout",
3
- "version": "13.3.0",
3
+ "version": "13.4.0",
4
4
  "type": "commonjs",
5
5
  "description": "eslint plugin for putout",
6
6
  "release": false,