-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommitlint.config.js
More file actions
44 lines (44 loc) · 1004 Bytes
/
Copy pathcommitlint.config.js
File metadata and controls
44 lines (44 loc) · 1004 Bytes
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
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
2,
'always',
[
'feat', // New feature
'fix', // Bug fix
'docs', // Documentation
'style', // Formatting, missing semicolons, etc
'refactor', // Code refactoring
'perf', // Performance improvements
'test', // Adding tests
'chore', // Maintenance tasks
'ci', // CI/CD changes
'build', // Build system changes
'revert', // Reverting changes
],
],
'scope-enum': [
2,
'always',
[
'backend',
'frontend',
'shared',
'sdk',
'auth',
'ui',
'api',
'websocket',
'heartbeat',
'theme',
'i18n',
'build',
'deps',
],
],
'subject-case': [2, 'always', 'sentence-case'],
'subject-max-length': [2, 'always', 100],
'body-max-line-length': [2, 'always', 100],
},
}