eslint-plugin-putout 27.2.0 → 27.2.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.
Files changed (2) hide show
  1. package/lib/ts.mjs +3 -2
  2. package/package.json +1 -1
package/lib/ts.mjs CHANGED
@@ -162,13 +162,14 @@ function convertPaddingLines([state, ...lines]) {
162
162
 
163
163
  function getOperatorLinebreak(options) {
164
164
  const [error, after, {overrides}] = options;
165
+ const newOverrides = assign({}, overrides);
165
166
 
166
- delete overrides['='];
167
+ delete newOverrides['='];
167
168
 
168
169
  return [
169
170
  error,
170
171
  after, {
171
- overrides,
172
+ overrides: newOverrides,
172
173
  },
173
174
  ];
174
175
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-putout",
3
- "version": "27.2.0",
3
+ "version": "27.2.1",
4
4
  "type": "commonjs",
5
5
  "description": "ESLint plugin for 🐊Putout",
6
6
  "release": false,