-
Notifications
You must be signed in to change notification settings - Fork 83
/
commitlint.config.js
72 lines (72 loc) · 2.29 KB
/
commitlint.config.js
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
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'subject-case': [1, 'always', 'lower-case'],
'scope-enum': [
2,
'always',
[
'.storybook',
'release',
'component-overview',
'eslint-config-ffe',
'eslint-config-ffe-base',
'stylelint-config-ffe',
'buildtool',
'ffe-accordion',
'ffe-accordion-react',
'ffe-account-selector-react',
'ffe-buttons',
'ffe-buttons-react',
'ffe-cards',
'ffe-cards-react',
'ffe-chart-donut-react',
'ffe-chips',
'ffe-chips-react',
'ffe-context-message',
'ffe-context-message-react',
'ffe-core',
'ffe-core-react',
'ffe-collapse-react',
'ffe-datepicker',
'ffe-datepicker-react',
'ffe-dropdown-react',
'ffe-feedback',
'ffe-feedback-react',
'ffe-file-upload',
'ffe-file-upload-react',
'ffe-form',
'ffe-form-react',
'ffe-formatters',
'ffe-grid',
'ffe-grid-react',
'ffe-header',
'ffe-icons',
'ffe-icons-react',
'ffe-lists',
'ffe-lists-react',
'ffe-messages',
'ffe-messages-react',
'ffe-message-box',
'ffe-message-box-react',
'ffe-modals',
'ffe-modals-react',
'ffe-pagination',
'ffe-pagination-react',
'ffe-sb1-logos',
'ffe-searchable-dropdown-react',
'ffe-spinner',
'ffe-spinner-react',
'ffe-system-message',
'ffe-system-message-react',
'ffe-symbols',
'ffe-symbols-react',
'ffe-tables',
'ffe-tables-react',
'ffe-tabs',
'ffe-tabs-react',
'ffe-webfonts',
],
],
},
};