Skip to content

Commit 193915c

Browse files
committed
feat(config/commitlint): add deps-dev , format , and lint as scopes (intended for build())
1 parent 8515444 commit 193915c

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/config/commitlint.config.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,17 @@ module.exports = {
1919
],
2020
],
2121
'scope-case': [1, 'always', 'kebab-case'],
22-
'scope-enum': [0, 'always', ['deps', 'build']],
22+
'scope-enum': [
23+
0,
24+
'always',
25+
[
26+
// build(...)
27+
'build',
28+
'deps',
29+
'deps-dev',
30+
'format',
31+
'lint',
32+
],
33+
],
2334
},
2435
}

0 commit comments

Comments
 (0)