eslint-plugin-putout 17.3.1 β†’ 17.5.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
@@ -151,6 +151,7 @@ Disabled 🐊**Putout** rules:
151
151
  - ❌ [`for-of/for`](https://github.com/coderaiser/putout/tree/v29.1.2/packages/plugin-convert-for-to-for-of#readme);
152
152
  - ❌ [`for-of/remove-useless`](https://github.com/coderaiser/putout/tree/v29.1.2/packages/plugin-remove-useless-for-of#readme);
153
153
  - ❌ [`for-of/remove-unused-variables`](https://github.com/coderaiser/putout/tree/29.1.2/packages/plugin-for-of#remove-unused-variables);
154
+ - ❌ [`maybe/noop`](https://github.com/coderaiser/putout/tree/29.2.4/packages/plugin-maybe#noop);
154
155
 
155
156
  ### safe+align
156
157
 
package/lib/index.js CHANGED
@@ -127,6 +127,7 @@ const safe = {
127
127
  'for-of/for': 'off',
128
128
  'for-of/remove-unused-variables': 'off',
129
129
  'for-of/remove-useless': 'off',
130
+ 'maybe/noop': 'off',
130
131
  },
131
132
  }],
132
133
  },
package/lib/jsx.js CHANGED
@@ -2,11 +2,12 @@
2
2
 
3
3
  const jsx = {
4
4
  rules: {
5
+ 'no-extra-parens': 'off',
5
6
  'react/jsx-indent': 'error',
6
7
  'react/jsx-wrap-multilines': ['error', {
7
- arrow: 'ignore',
8
+ arrow: 'parens-new-line',
8
9
  return: 'parens-new-line',
9
- declaration: 'ignore',
10
+ declaration: 'parens-new-line',
10
11
  }],
11
12
  },
12
13
  plugins: ['react'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-putout",
3
- "version": "17.3.1",
3
+ "version": "17.5.0",
4
4
  "type": "commonjs",
5
5
  "description": "ESLint plugin for 🐊Putout",
6
6
  "release": false,