mirror of
https://github.com/NohamR/knowledge-kit.git
synced 2026-05-24 20:00:37 +00:00
36 lines
607 B
JavaScript
36 lines
607 B
JavaScript
const types = [
|
|
'build',
|
|
'ci',
|
|
'chore',
|
|
'docs',
|
|
'feat',
|
|
'fix',
|
|
'pref',
|
|
'refactor',
|
|
'revert',
|
|
'style',
|
|
'test'
|
|
];
|
|
|
|
typeEnum = {
|
|
rules: {
|
|
'type-enum': [2, 'always', types]
|
|
},
|
|
value: () => types
|
|
}
|
|
|
|
module.exports = {
|
|
extends: [
|
|
"@commitlint/config-conventional"
|
|
],
|
|
rules: {
|
|
'type-case': [0],
|
|
'type-empty': [0],
|
|
'scope-empty': [0],
|
|
'scope-case': [0],
|
|
'subject-full-stop': [0, 'never'],
|
|
'subject-case': [0, 'never'],
|
|
'header-max-length': [0, 'always', 72],
|
|
'type-enum': typeEnum.rules['type-enum']
|
|
}
|
|
}; |