-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommitlint.config.js
53 lines (45 loc) · 1.36 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
const validateBodyMaxLengthIgnoringDeps = async (parsedCommit) => {
const { maxLineLength } = await import('@commitlint/ensure');
const { type, scope, body } = parsedCommit
const isDepsCommit = type === 'chore' && scope === 'deps'
const bodyMaxLineLength = 120;
return [
isDepsCommit || !body || maxLineLength(body, bodyMaxLineLength),
`commit message body line length must not exceed ${bodyMaxLineLength}`,
]
}
module.exports = {
extends: ['@commitlint/config-conventional'],
plugins: ['commitlint-plugin-function-rules'],
rules: {
// increase max line length for header
'header-max-length': [2, 'always', 120],
// disable max line length for footers
'footer-max-line-length': [0, 'always'],
// disable default 'body-max-line-length' rule and add custom rule for body-max-line-length
'body-max-line-length': [0],
'function-rules/body-max-line-length': [
2,
'always',
validateBodyMaxLengthIgnoringDeps
],
// specify the allowed scopes
'scope-enum': [2, 'always',
[
'',
'aqua',
'bitwarden-cli',
'build',
'dev-tools',
'freeradius-server',
'github-actions',
'release',
'renovate',
'tools'
]
],
// 'scope-empty': [2, 'always'],
// don't validate case of body
'body-case': [0, 'always']
}
}