@code-pushup/eslint-plugin 0.5.2 → 0.5.3

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 (3) hide show
  1. package/bin.js +1 -2
  2. package/index.js +2 -3
  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).default(["json"]).optional()
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.2";
8
+ var version = "0.5.3";
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).default(["json"]).optional()
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-pushup/eslint-plugin",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "dependencies": {
5
5
  "@code-pushup/utils": "*",
6
6
  "@code-pushup/models": "*",