eslint-plugin-putout 12.6.0 → 12.7.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,6 +103,7 @@ When using 🐊`Putout` in IDE with `--fix` on save, or when you want to disable
103
103
 
104
104
  List of disabled 🐊`Putout` rules:
105
105
 
106
+ - [no-useless-return](https://eslint.org/docs/rules/no-useless-return)
106
107
  - [remove-empty](https://github.com/coderaiser/putout/tree/v22.0.0/packages/plugin-remove-empty);
107
108
  - [remove-unused-variables](https://github.com/coderaiser/putout/tree/v22.0.0/packages/remove-unused-variables);
108
109
  - [remove-unused-types](https://github.com/coderaiser/putout/tree/v22.0.0/packages/remove-unused-types);
package/lib/index.js CHANGED
@@ -97,6 +97,7 @@ const safe = {
97
97
  ...recommended,
98
98
  rules: {
99
99
  ...recommended.rules,
100
+ 'no-useless-return': 'off',
100
101
  'putout/align-spaces': 'off',
101
102
  'putout/putout': ['error', {
102
103
  rules: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-putout",
3
- "version": "12.6.0",
3
+ "version": "12.7.0",
4
4
  "description": "eslint plugin for putout",
5
5
  "release": false,
6
6
  "tag": false,