1 | import { RuleConfigCondition, RuleConfigSeverity, TargetCaseType } from '@commitlint/types';
|
2 | declare const _default: {
|
3 | parserPreset: string;
|
4 | rules: {
|
5 | 'body-leading-blank': readonly [RuleConfigSeverity.Warning, "always"];
|
6 | 'body-max-line-length': readonly [RuleConfigSeverity.Error, "always", 100];
|
7 | 'footer-leading-blank': readonly [RuleConfigSeverity.Warning, "always"];
|
8 | 'footer-max-line-length': readonly [RuleConfigSeverity.Error, "always", 100];
|
9 | 'header-max-length': readonly [RuleConfigSeverity.Error, "always", 100];
|
10 | 'header-trim': readonly [RuleConfigSeverity.Error, "always"];
|
11 | 'subject-case': [RuleConfigSeverity, RuleConfigCondition, TargetCaseType[]];
|
12 | 'subject-empty': readonly [RuleConfigSeverity.Error, "never"];
|
13 | 'subject-full-stop': readonly [RuleConfigSeverity.Error, "never", "."];
|
14 | 'type-case': readonly [RuleConfigSeverity.Error, "always", "lower-case"];
|
15 | 'type-empty': readonly [RuleConfigSeverity.Error, "never"];
|
16 | 'type-enum': [RuleConfigSeverity, RuleConfigCondition, string[]];
|
17 | };
|
18 | prompt: {
|
19 | questions: {
|
20 | type: {
|
21 | description: string;
|
22 | enum: {
|
23 | feat: {
|
24 | description: string;
|
25 | title: string;
|
26 | emoji: string;
|
27 | };
|
28 | fix: {
|
29 | description: string;
|
30 | title: string;
|
31 | emoji: string;
|
32 | };
|
33 | docs: {
|
34 | description: string;
|
35 | title: string;
|
36 | emoji: string;
|
37 | };
|
38 | style: {
|
39 | description: string;
|
40 | title: string;
|
41 | emoji: string;
|
42 | };
|
43 | refactor: {
|
44 | description: string;
|
45 | title: string;
|
46 | emoji: string;
|
47 | };
|
48 | perf: {
|
49 | description: string;
|
50 | title: string;
|
51 | emoji: string;
|
52 | };
|
53 | test: {
|
54 | description: string;
|
55 | title: string;
|
56 | emoji: string;
|
57 | };
|
58 | build: {
|
59 | description: string;
|
60 | title: string;
|
61 | emoji: string;
|
62 | };
|
63 | ci: {
|
64 | description: string;
|
65 | title: string;
|
66 | emoji: string;
|
67 | };
|
68 | chore: {
|
69 | description: string;
|
70 | title: string;
|
71 | emoji: string;
|
72 | };
|
73 | revert: {
|
74 | description: string;
|
75 | title: string;
|
76 | emoji: string;
|
77 | };
|
78 | };
|
79 | };
|
80 | scope: {
|
81 | description: string;
|
82 | };
|
83 | subject: {
|
84 | description: string;
|
85 | };
|
86 | body: {
|
87 | description: string;
|
88 | };
|
89 | isBreaking: {
|
90 | description: string;
|
91 | };
|
92 | breakingBody: {
|
93 | description: string;
|
94 | };
|
95 | breaking: {
|
96 | description: string;
|
97 | };
|
98 | isIssueAffected: {
|
99 | description: string;
|
100 | };
|
101 | issuesBody: {
|
102 | description: string;
|
103 | };
|
104 | issues: {
|
105 | description: string;
|
106 | };
|
107 | };
|
108 | };
|
109 | };
|
110 | export default _default;
|
111 |
|
\ | No newline at end of file |