We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17804d3 commit bdcd411Copy full SHA for bdcd411
githooks/commitlint.config.js
@@ -18,7 +18,7 @@ const Configuration = {
18
* Any rules defined here will override rules from @commitlint/config-conventional
19
*/
20
rules: {
21
- 'type-case': [2, 'always', 'lowerCase'],
+ 'type-case': [2, 'always', 'lower-case'],
22
'type-enum': [2, 'always', [
23
'build',
24
'chore',
@@ -31,20 +31,21 @@ const Configuration = {
31
'style',
32
'test'
33
]],
34
- 'scope-case': [2, 'always', 'lowerCase'],
+ 'scope-case': [2, 'always', 'lower-case'],
35
'scope-enum': [2, 'always', [
36
'handler',
37
'security',
38
'formatting',
39
'storage',
40
'configuration',
41
+ 'deps',
42
'go',
43
'github',
44
'git'
45
46
'scope-empty': [1, 'never'],
47
- 'subject-case': [2, 'always', 'sentence-case'],
48
+ 'subject-case': [2, 'always', 'lower-case'],
49
'header-max-length': [2, 'always', 142],
50
},
51
/*
0 commit comments