aislop 0.9.4 → 0.9.5

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.
@@ -28,8 +28,4 @@ const ENGINE_INFO = {
28
28
  const getEngineLabel = (engine) => ENGINE_INFO[engine].label;
29
29
 
30
30
  //#endregion
31
- //#region src/version.ts
32
- const APP_VERSION = "0.9.4";
33
-
34
- //#endregion
35
- export { ENGINE_INFO as n, getEngineLabel as r, APP_VERSION as t };
31
+ export { getEngineLabel as n, ENGINE_INFO as t };
package/dist/index.d.ts CHANGED
@@ -62,6 +62,11 @@ declare const AislopConfigSchema: z.ZodObject<{
62
62
  telemetry: z.ZodDefault<z.ZodObject<{
63
63
  enabled: z.ZodDefault<z.ZodBoolean>;
64
64
  }, z.core.$strip>>;
65
+ rules: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodEnum<{
66
+ error: "error";
67
+ warning: "warning";
68
+ off: "off";
69
+ }>>>;
65
70
  exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
66
71
  include: z.ZodDefault<z.ZodArray<z.ZodString>>;
67
72
  }, z.core.$strip>;
@@ -166,6 +171,7 @@ interface ScanOptions {
166
171
  staged: boolean;
167
172
  verbose: boolean;
168
173
  json: boolean;
174
+ sarif?: boolean;
169
175
  showHeader?: boolean;
170
176
  printBrand?: boolean;
171
177
  exclude?: string[];