-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.commitlintrc.cjs
26 lines (25 loc) · 1.09 KB
/
.commitlintrc.cjs
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
const types = require('./scripts/ks-cvlar.types.cjs');
const scopes = require('./scripts/ks-cvlar.scopes.cjs');
const { ConvertToLintTypes, ConvertToLintScopes } = require('./dist/index.cjs'); // 此写法仅在本项目中使用,其他项目请改成下方写法
// const { ConvertToLintTypes, ConvertToLintScopes } = require('@kwooshung/cvlar');
module.exports = {
parserPreset: {
parserOpts: {
headerPattern: /^(?<type>.*\s\w*)(?:\((?<scope>.*)\))?!?:\s(?<subject>(?:(?!#).)*(?:(?!\s).))$/,
headerCorrespondence: ['type', 'scope', 'subject']
}
},
rules: {
'header-max-length': [2, 'always', 140],
'body-leading-blank': [2, 'always'],
'footer-leading-blank': [2, 'always'],
'scope-case': [2, 'always', 'lower-case'],
'subject-empty': [2, 'never'],
'subject-exclamation-mark': [2, 'never'],
'subject-full-stop': [2, 'never', '.'],
'type-case': [2, 'always', 'lower-case'],
'type-empty': [2, 'never'],
'type-enum': [2, 'always', ConvertToLintTypes(types)],
'scope-enum': [2, 'always', ConvertToLintScopes(scopes)]
}
};