UNPKG

731 BTypeScriptView Raw
1import { AutoCodeInspection } from "../goal/common/AutoCodeInspection";
2import { Autofix } from "../goal/common/Autofix";
3import { PushImpact } from "../goal/common/PushImpact";
4/**
5 * Commonly used goals in an SDM that may be used in creating an ExtensionPack
6 */
7export interface WellKnownGoals {
8 /**
9 * pushImpactGoal to add push impact reactions to.
10 */
11 pushImpactGoal?: PushImpact;
12 /**
13 * Inspect goal to add inspections to.
14 * Review functionality won't work otherwise.
15 */
16 inspectGoal?: AutoCodeInspection;
17 /**
18 * Autofix goal to add autofixes to.
19 * Autofix functionality won't work otherwise.
20 */
21 autofixGoal?: Autofix;
22}
23//# sourceMappingURL=WellKnownGoals.d.ts.map
\No newline at end of file