-
Notifications
You must be signed in to change notification settings - Fork 6.8k
/
Copy pathcommit-message.mts
93 lines (92 loc) · 2.3 KB
/
commit-message.mts
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import {CommitMessageConfig} from '@angular/ng-dev';
/**
* The configuration for `ng-dev commit-message` commands.
*/
export const commitMessage: CommitMessageConfig = {
maxLineLength: Infinity,
minBodyLength: 0,
minBodyLengthTypeExcludes: ['docs'],
scopes: [
'multiple', // For when a commit applies to multiple components.
'cdk-experimental/column-resize',
'cdk-experimental/combobox',
'cdk-experimental/popover-edit',
'cdk-experimental/scrolling',
'cdk-experimental/selection',
'cdk-experimental/table-scroll-container',
'cdk/a11y',
'cdk/accordion',
'cdk/bidi',
'cdk/clipboard',
'cdk/coercion',
'cdk/collections',
'cdk/dialog',
'cdk/drag-drop',
'cdk/keycodes',
'cdk/layout',
'cdk/listbox',
'cdk/menu',
'cdk/observers',
'cdk/overlay',
'cdk/platform',
'cdk/portal',
'cdk/private',
'cdk/schematics',
'cdk/scrolling',
'cdk/stepper',
'cdk/table',
'cdk/testing',
'cdk/text-field',
'cdk/tree',
'google-maps',
'material-experimental/column-resize',
'material-experimental/theming',
'material-experimental/menubar',
'material-experimental/popover-edit',
'material-experimental/selection',
'material/button',
'material/card',
'material/checkbox',
'material/dialog',
'material/input',
'material/paginator',
'material/progress-bar',
'material/progress-spinner',
'material/slide-toggle',
'material/snack-bar',
'material/table',
'material/tabs',
'material/autocomplete',
'material/badge',
'material/bottom-sheet',
'material/button-toggle',
'material/chips',
'material/core',
'material/datepicker',
'material/divider',
'material/expansion',
'material/form-field',
'material/grid-list',
'material/icon',
'material/list',
'material/menu',
'material/prebuilt-themes',
'material/radio',
'material/schematics',
'material/select',
'material/sidenav',
'material/slider',
'material/sort',
'material/stepper',
'material/testing',
'material/timepicker',
'material/theming',
'material/toolbar',
'material/tooltip',
'material/tree',
'material-moment-adapter',
'material-date-fns-adapter',
'material-luxon-adapter',
'youtube-player',
],
};