putout 41.25.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 +11 -0
- package/package.json +1 -1
- package/putout.json +14 -14
package/ChangeLog
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
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
|
+
|
|
1
12
|
2026.02.15, v41.25.0
|
|
2
13
|
|
|
3
14
|
fix:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "putout",
|
|
3
|
-
"version": "41.25.
|
|
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
|
-
"
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
"
|
|
170
|
-
"
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"
|
|
164
|
+
"**/*.lock",
|
|
165
|
+
"**/*.log",
|
|
166
|
+
"**/.nyc_output",
|
|
167
|
+
"**/.yarn",
|
|
168
|
+
"**/.pnp.*",
|
|
169
|
+
"**/.idea",
|
|
170
|
+
"**/.git",
|
|
171
|
+
"**/package-lock.json",
|
|
172
|
+
"**/node_modules",
|
|
173
|
+
"**/fixture",
|
|
174
|
+
"**/coverage",
|
|
175
|
+
"**/dist",
|
|
176
|
+
"**/dist-dev",
|
|
177
|
+
"**/build"
|
|
178
178
|
],
|
|
179
179
|
"rules": {
|
|
180
180
|
"coverage": "off",
|