putout 35.12.0 → 35.14.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/ChangeLog CHANGED
@@ -1,3 +1,32 @@
1
+ 2024.04.12, v35.14.0
2
+
3
+ fix:
4
+ - fee14bbd2 @putout/plugin-npmignore: message
5
+
6
+ feature:
7
+ - 7311d3b1b @putout/operator-ignore: add
8
+ - 383404e74 @putout/operator-json: fromJS: no newline
9
+ - 8ad2a38a9 @putout/plugin-putout: remove-unused-get-properties-argument: add
10
+ - efc02772d @putout/plugin-eslint: convert-rc-to-flat: safeAlign always first
11
+ - 088a4b2fd @putout/operate: traverseProperties: path.parentPath -> path.isCallExpression
12
+ - 77230e28c @putout/plugin-eslint: convert-rc-to-flat: improve support of safeAlign
13
+ - 43a051b58 @putout/plugin-eslint: declare: add
14
+ - 16fdfe713 @putout/plugin-eslint: convert-rc-to-flat: improve
15
+ - 3fed45ab7 @putout/plugin-eslint: convert-files-to-array: report: improve message for FlatConfig
16
+
17
+ 2024.04.10, v35.13.0
18
+
19
+ fix:
20
+ - e79864d67 eslint-plugin-putout: ts: plugins
21
+
22
+ feature:
23
+ - eb0e9cb9c putout: match: add support of ESLint FlatConfig
24
+ - 4ff66674b @putout/plugin-eslint: convert-files-to-array: add support of FlatConfig
25
+ - 809df0ec7 @putout/plugin-eslint: convert-files-to-array: add
26
+ - 83c56c805 putout: migrate to ESLint FlatConfig
27
+ - e61697166 @putout/plugin-eslint: remove-useless-slice: add
28
+ - 8114b3429 @putout/plugin-npmignore: add "*.config.*"
29
+
1
30
  2024.04.09, v35.12.0
2
31
 
3
32
  feature:
@@ -14,10 +14,12 @@ module.exports = (line) => {
14
14
  [from]: to,
15
15
  });
16
16
 
17
- const plugin = [name, {
18
- report,
19
- replace,
20
- }];
17
+ const plugin = [
18
+ name, {
19
+ report,
20
+ replace,
21
+ },
22
+ ];
21
23
 
22
24
  return [plugin];
23
25
  };
package/lib/putout.js CHANGED
@@ -136,6 +136,7 @@ module.exports.operator = {
136
136
  ...require('@putout/operator-filesystem'),
137
137
  ...require('@putout/operator-match-files'),
138
138
  ...require('@putout/operator-rename-files'),
139
+ ...require('@putout/operator-ignore'),
139
140
  };
140
141
 
141
142
  module.exports.ignores = require('./ignores');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "putout",
3
- "version": "35.12.0",
3
+ "version": "35.14.0",
4
4
  "type": "commonjs",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "🐊 Pluggable and configurable code transformer with built-in ESLint, Babel and support of js, jsx, typescript, flow, markdown, yaml and json",
@@ -79,6 +79,7 @@
79
79
  "@putout/operator-add-args": "^8.0.0",
80
80
  "@putout/operator-declare": "^9.0.0",
81
81
  "@putout/operator-filesystem": "^4.0.0",
82
+ "@putout/operator-ignore": "^1.0.0",
82
83
  "@putout/operator-json": "^2.0.0",
83
84
  "@putout/operator-match-files": "^3.0.0",
84
85
  "@putout/operator-regexp": "^1.0.0",
package/putout.json CHANGED
@@ -101,6 +101,9 @@
101
101
  "eslint": "on",
102
102
  "eslint/convert-require-to-import": "off"
103
103
  },
104
+ "eslint.config.*": {
105
+ "eslint": "on"
106
+ },
104
107
  "package.json": {
105
108
  "package-json": "on"
106
109
  },