aislop 0.9.0 → 0.9.2
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 +1 -0
- package/dist/cli.js +662 -180
- package/dist/index.d.ts +4 -0
- package/dist/index.js +615 -164
- package/dist/{json-DZfGz2xa.js → json-DZHn6AE3.js} +1 -1
- package/dist/mcp.js +422 -148
- package/dist/{version-D_rqBdyj.js → version-C3JZkQGA.js} +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -63,6 +63,7 @@ declare const AislopConfigSchema: z.ZodObject<{
|
|
|
63
63
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
64
64
|
}, z.core.$strip>>;
|
|
65
65
|
exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
66
|
+
include: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
66
67
|
}, z.core.$strip>;
|
|
67
68
|
type AislopConfig = z.infer<typeof AislopConfigSchema>;
|
|
68
69
|
//#endregion
|
|
@@ -100,6 +101,7 @@ interface BuildInitRenderInput {
|
|
|
100
101
|
declare const buildInitSuccessRender: (input: BuildInitRenderInput) => string;
|
|
101
102
|
interface InitOptions {
|
|
102
103
|
printBrand?: boolean;
|
|
104
|
+
strict?: boolean;
|
|
103
105
|
}
|
|
104
106
|
declare const initCommand: (directory: string, options?: InitOptions) => Promise<void>;
|
|
105
107
|
//#endregion
|
|
@@ -148,6 +150,7 @@ interface Diagnostic {
|
|
|
148
150
|
column: number;
|
|
149
151
|
category: string;
|
|
150
152
|
fixable: boolean;
|
|
153
|
+
detail?: string;
|
|
151
154
|
}
|
|
152
155
|
interface EngineResult {
|
|
153
156
|
engine: EngineName;
|
|
@@ -166,6 +169,7 @@ interface ScanOptions {
|
|
|
166
169
|
showHeader?: boolean;
|
|
167
170
|
printBrand?: boolean;
|
|
168
171
|
exclude?: string[];
|
|
172
|
+
include?: string[];
|
|
169
173
|
/** Used for telemetry to distinguish scan vs ci invocation */
|
|
170
174
|
command?: "scan" | "ci";
|
|
171
175
|
}
|