UNPKG

697 BTypeScriptView Raw
1import { AutoCodeInspection, ExtensionPack, PushImpact, ReviewListenerRegistration } from "@atomist/sdm";
2export interface CloudFoundrySupportOptions {
3 /**
4 * Inspect goal to add inspections to.
5 * Review functionality won't work otherwise.
6 */
7 inspectGoal?: AutoCodeInspection;
8 /**
9 * Autofix goal to add autofixes to.
10 * Autofix functionality won't work otherwise.
11 */
12 pushImpactGoal?: PushImpact;
13 /**
14 * Review listeners that let you publish review results.
15 */
16 reviewListeners?: ReviewListenerRegistration | ReviewListenerRegistration[];
17}
18export declare function CloudFoundrySupport(options: CloudFoundrySupportOptions): ExtensionPack;