We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b65aced commit 0bd0592Copy full SHA for 0bd0592
@commitlint/types/src/prompt.ts
@@ -36,13 +36,12 @@ export type PromptConfig = {
36
};
37
38
export type PromptMessages = {
39
- skip: string;
40
- max: string;
41
- min: string;
42
- emptyWarning: string;
43
- upperLimitWarning: string;
44
- lowerLimitWarning: string;
45
- [_key: string]: string;
+ skip?: string;
+ max?: string;
+ min?: string;
+ emptyWarning?: string;
+ upperLimitWarning?: string;
+ lowerLimitWarning?: string;
46
47
48
export type UserPromptConfig = DeepPartial<PromptConfig>;
0 commit comments