-
Notifications
You must be signed in to change notification settings - Fork 935
/
Copy pathprompt.ts
58 lines (53 loc) · 949 Bytes
/
prompt.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
export type RuleField =
| 'header'
| 'type'
| 'scope'
| 'subject'
| 'body'
| 'footer';
export type PromptName =
| RuleField
| 'isBreaking'
| 'breakingBody'
| 'breaking'
| 'isIssueAffected'
| 'issuesBody'
| 'issues';
export type PromptConfig = {
settings: {
scopeEnumSeparator: string;
enableMultipleScopes: boolean;
};
messages: PromptMessages;
questions: Partial<
Record<
PromptName,
{
description?: string;
messages?: {[K: string]: string};
enum?: {
[enumName: string]: {
description?: string;
title?: string;
emoji?: string;
};
};
}
>
>;
};
export type PromptMessages = {
skip: string;
max: string;
min: string;
emptyWarning: string;
upperLimitWarning: string;
lowerLimitWarning: string;
[_key: string]: string;
};
export type UserPromptConfig = DeepPartial<PromptConfig>;
type DeepPartial<T> = {
[P in keyof T]?: {
[K in keyof T[P]]?: T[P][K];
};
};