Skip to content

Commit bdcd411

Browse files
authored
Update commitlint.config.js (#81)
1 parent 17804d3 commit bdcd411

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

githooks/commitlint.config.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const Configuration = {
1818
* Any rules defined here will override rules from @commitlint/config-conventional
1919
*/
2020
rules: {
21-
'type-case': [2, 'always', 'lowerCase'],
21+
'type-case': [2, 'always', 'lower-case'],
2222
'type-enum': [2, 'always', [
2323
'build',
2424
'chore',
@@ -31,20 +31,21 @@ const Configuration = {
3131
'style',
3232
'test'
3333
]],
34-
'scope-case': [2, 'always', 'lowerCase'],
34+
'scope-case': [2, 'always', 'lower-case'],
3535
'scope-enum': [2, 'always', [
3636
'handler',
3737
'security',
3838
'formatting',
3939
'storage',
4040
'configuration',
41+
'deps',
4142
'go',
4243
'github',
4344
'git'
4445
]],
4546
'scope-empty': [1, 'never'],
4647

47-
'subject-case': [2, 'always', 'sentence-case'],
48+
'subject-case': [2, 'always', 'lower-case'],
4849
'header-max-length': [2, 'always', 142],
4950
},
5051
/*

0 commit comments

Comments
 (0)