aislop 0.5.1 → 0.6.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/dist/index.d.ts CHANGED
@@ -59,6 +59,7 @@ declare const AislopConfigSchema: z.ZodObject<{
59
59
  telemetry: z.ZodDefault<z.ZodObject<{
60
60
  enabled: z.ZodDefault<z.ZodBoolean>;
61
61
  }, z.core.$strip>>;
62
+ exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
62
63
  }, z.core.$strip>;
63
64
  type AislopConfig = z.infer<typeof AislopConfigSchema>;
64
65
  //#endregion
@@ -161,6 +162,7 @@ interface ScanOptions {
161
162
  json: boolean;
162
163
  showHeader?: boolean;
163
164
  printBrand?: boolean;
165
+ exclude?: string[];
164
166
  /** Used for telemetry to distinguish scan vs ci invocation */
165
167
  command?: "scan" | "ci";
166
168
  }