@code-pushup/eslint-plugin 0.5.2 → 0.5.4
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/bin.js +1 -2
- package/index.js +2 -3
- package/package.json +1 -1
package/bin.js
CHANGED
|
@@ -215,8 +215,7 @@ var persistConfigSchema = z3.object({
|
|
|
215
215
|
filename: fileNameSchema(
|
|
216
216
|
"Artifacts file name (without extension)"
|
|
217
217
|
).optional(),
|
|
218
|
-
format: z3.array(formatSchema).
|
|
219
|
-
// @TODO remove default or optional value and otherwise it will not set defaults.
|
|
218
|
+
format: z3.array(formatSchema).optional()
|
|
220
219
|
});
|
|
221
220
|
|
|
222
221
|
// packages/models/src/lib/plugin-config.ts
|
package/index.js
CHANGED
|
@@ -5,7 +5,7 @@ import { fileURLToPath } from "url";
|
|
|
5
5
|
|
|
6
6
|
// packages/plugin-eslint/package.json
|
|
7
7
|
var name = "@code-pushup/eslint-plugin";
|
|
8
|
-
var version = "0.5.
|
|
8
|
+
var version = "0.5.4";
|
|
9
9
|
|
|
10
10
|
// packages/plugin-eslint/src/lib/config.ts
|
|
11
11
|
import { z } from "zod";
|
|
@@ -237,8 +237,7 @@ var persistConfigSchema = z4.object({
|
|
|
237
237
|
filename: fileNameSchema(
|
|
238
238
|
"Artifacts file name (without extension)"
|
|
239
239
|
).optional(),
|
|
240
|
-
format: z4.array(formatSchema).
|
|
241
|
-
// @TODO remove default or optional value and otherwise it will not set defaults.
|
|
240
|
+
format: z4.array(formatSchema).optional()
|
|
242
241
|
});
|
|
243
242
|
|
|
244
243
|
// packages/models/src/lib/plugin-config.ts
|