aislop 0.6.0 → 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/README.md +54 -1
- package/dist/cli.js +4189 -3838
- package/dist/index.d.ts +2 -0
- package/dist/index.js +429 -282
- package/dist/{json-DcE9soYJ.js → json-DIW4kCBS.js} +1 -1
- package/dist/{version-C2lM_2fE.js → version-DukdnmKT.js} +1 -5
- package/package.json +4 -1
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
|
}
|