putout 41.24.0 → 41.25.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.
- package/ChangeLog +21 -0
- package/package.json +1 -1
- package/putout.json +8 -8
package/ChangeLog
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
2026.02.15, v41.25.1
|
|
2
|
+
|
|
3
|
+
fix:
|
|
4
|
+
- 955c9995c putout: get back ignore
|
|
5
|
+
|
|
6
|
+
feature:
|
|
7
|
+
- 086aa95bd putout: ignore: apply mask
|
|
8
|
+
- 18074252f @putout/plugin-putout-config: sort-ignore: add
|
|
9
|
+
- 0821779ac @putout/operator-sort-ignore: report when property passed
|
|
10
|
+
- dbf82a215 @putout/operator-sort-ignore: __json: no property
|
|
11
|
+
|
|
12
|
+
2026.02.15, v41.25.0
|
|
13
|
+
|
|
14
|
+
fix:
|
|
15
|
+
- 0309987e3 @putout/plugin-converage: names
|
|
16
|
+
|
|
17
|
+
feature:
|
|
18
|
+
- 73b58c941 putout: simplify ignore
|
|
19
|
+
- b324c6979 eslint-plugin-putout: private imports
|
|
20
|
+
- 1fa23da58 @putout/plugin-coverage: sort
|
|
21
|
+
|
|
1
22
|
2026.02.15, v41.24.0
|
|
2
23
|
|
|
3
24
|
fix:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "41.
|
|
3
|
+
"version": "41.25.1",
|
|
4
4
|
"type": "module",
|
|
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",
|
package/putout.json
CHANGED
|
@@ -161,20 +161,20 @@
|
|
|
161
161
|
}
|
|
162
162
|
},
|
|
163
163
|
"ignore": [
|
|
164
|
-
"
|
|
165
|
-
"
|
|
164
|
+
"**/*.lock",
|
|
165
|
+
"**/*.log",
|
|
166
166
|
"**/.nyc_output",
|
|
167
167
|
"**/.yarn",
|
|
168
|
-
"**/yarn.lock",
|
|
169
|
-
"**/yarn-error.log",
|
|
170
168
|
"**/.pnp.*",
|
|
169
|
+
"**/.idea",
|
|
170
|
+
"**/.git",
|
|
171
|
+
"**/package-lock.json",
|
|
172
|
+
"**/node_modules",
|
|
173
|
+
"**/fixture",
|
|
171
174
|
"**/coverage",
|
|
172
175
|
"**/dist",
|
|
173
176
|
"**/dist-dev",
|
|
174
|
-
"**/build"
|
|
175
|
-
"**/package-lock.json",
|
|
176
|
-
"**/.idea",
|
|
177
|
-
"**/.git"
|
|
177
|
+
"**/build"
|
|
178
178
|
],
|
|
179
179
|
"rules": {
|
|
180
180
|
"coverage": "off",
|